The venture studio operating system. Dashboard, orchestration, and project management across the full Sanctuary Parc portfolio.
One home base for every active project in the studio. Clean folders, predictable branch names, and git hooks that prevent cross-project accidents.
miniverse/ # Core product projects
proposal-builder/ # Proposal generation tool
andromeda/ # Personal CRM workspace
design-plus/ # Design builds, Figma plugins, experiments
atlas/ # Full-stack app (backend + bot + dashboard + desktop)
gravity/ # API + data services
bangalore/ # Bangalore-focused projects & experiments
data/ # Debug assets, data utilities, research
dashboard/ # Notes for the separate dashboard fork
scripts/ # git-workon, git-context, project-map helpers
The miniverse/atlas monorepo is the main technical stack:
| App | What it does |
|---|---|
backend |
Node/Express API with Prisma ORM, AI embeddings, calendar scheduler, action items, chat, drafts, meetings, routines, search |
bot |
Conversational bot interface |
dashboard |
Web dashboard UI |
desktop |
Desktop client |
| Branch | Scope |
|---|---|
main |
Shared structure, docs, scripts, multi-project changes |
project/proposal-builder |
miniverse/proposal-builder |
project/andromeda |
miniverse/andromeda |
project/design-plus |
miniverse/design-plus |
project/bangalore |
bangalore/ |
project/data |
data/ |
project/dashboard-fork |
dashboard/ |
git workon proposal-builder # switch to the right branch + folder
# ... do your work ...
git context # sanity-check branch vs. path
git commit # pre-commit hook blocks mismatchesThe custom git scripts live in scripts/ and enforce the branch/path mapping automatically.
This repo uses:
user.name = 0xbeamuser.email = p@spacekayak.xyz
| Remote | Points to |
|---|---|
origin |
Sanctuary Parc master repo |
dashboard-fork |
Separate dashboard fork repo |
dashboard/ is intentionally documentation-only inside this monorepo. The actual dashboard lives in its own fork repo.