RDCO repo locations on the Mac mini
When founder asks "where's the X repo?" or session loses track of where a project lives, this is the canonical map. Not in ~/Projects/ — most active repos are top-level under ~/.
Active repos (top-level under ~/)
| Repo | Path | Purpose | Stack |
|---|---|---|---|
rdco-sc |
~/rdco-sc/ |
Sanity Check newsletter site (sc.raydata.co) — homepage, Vol II essays, archive, RSS/JSON feeds | Astro v6.1.9 + Tailwind v4 + Bun |
rdco-website |
~/rdco-website/ (now ~/Projects/rdco-website/) |
Main raydata.co umbrella site + project pages (incl. /projects/sanity-check landing) | Astro |
rdco-hq |
~/rdco-hq/ |
hq.raydata.co private dashboard (Phase A: read-only views; Phase B planned for per-bet stack views) | Cloudflare Pages + Workers |
rdco-hq-api |
~/rdco-hq-api/ |
Backend API for hq.raydata.co | Cloudflare Worker |
rdco-vault |
~/rdco-vault/ |
The knowledge base itself (this doc lives here) | Markdown + QMD index + DuckDB graph |
rdco-video-studio |
~/rdco-video-studio/ |
Video production pipeline (likely for Sanity Check / Squarely promo / etc.) | TBD |
(Archive) |
~/(Archive)/ |
Old/retired projects — check here before assuming a project doesn't exist | varies |
Project-specific repos (under ~/Projects/)
| Repo | Path | Purpose | Stack |
|---|---|---|---|
squarely-ios |
~/Projects/squarely-ios/ |
Squarely Puzzle iOS app source | Swift / Xcode |
squarely-landing |
~/Projects/squarely-landing/ |
squarelypuzzle.com marketing site | Astro |
squarely-web |
~/Projects/squarely-web/ |
Squarely web companion | Astro |
datadots |
~/Projects/datadots/ |
DataDots project (Sanity Check companion) | TBD |
elevenlabs-mcp-wrapper |
~/Projects/elevenlabs-mcp-wrapper/ |
1Password-credentialed MCP wrapper for ElevenLabs | Bash + Node |
stripe-mcp-wrapper |
~/Projects/stripe-mcp-wrapper/ |
1Password-credentialed MCP wrapper for Stripe RAK | Bash |
xmcp |
~/Projects/xmcp/ |
X (Twitter) MCP server for vault ingestion | TBD |
ray-config |
~/Projects/ray-config/ |
Ray's .claude config + skills (mirror of ~/.claude/) |
Markdown + scripts |
Infrastructure repos (under ~/)
| Repo | Path | Purpose |
|---|---|---|
aws-bucket-inspect |
~/aws-bucket-inspect/ |
AWS S3 audit tooling |
blender_mcp |
~/blender_mcp/ |
Blender MCP server (3D model authoring) |
cloudflare-workers |
~/cloudflare-workers/ |
Cloudflare Workers shared lib / scratch |
wheeler-extract |
~/wheeler-extract/ |
One-off data extraction project |
Standard top-level dirs (NOT repos, just folders)
~/Applications/,~/Desktop/,~/Documents/,~/Downloads/,~/Library/,~/Movies/,~/Music/,~/Pictures/,~/Public/— macOS standard~/.claude/— Claude Code config + skills + state files~/.agents/— Agent configs
How to locate a missing repo
If a session can't find a repo, check this order:
- Top-level under
~/— most RDCO active repos live here (rdco-*, *-extract, etc.) ~/Projects/— squarely-* and supporting tooling~/(Archive)/— retired projectsfind ~ -maxdepth 4 -type d -iname "*<keyword>*" -not -path "*/node_modules/*" -not -path "*/.git/*"— broad fallback
Founder convention
Per founder 2026-05-04: "I typically organize all my repos under a 'code' folder." Note that the actual layout is mostly top-level under ~/ (with some ~/Projects/ overflow), NOT a single ~/code/ dir. No ~/code/ exists as of this doc's date.
Related
- [[../../.claude/scripts/scheduled-jobs.txt]] — cron registry that references some script paths
- [[../../.claude/state/working-context.md]] — session-state scratchpad
- [[../06-reference/2026-04-23-hq-raydata-co-private-dashboard-architecture]] — context on rdco-hq + rdco-hq-api split