-
Notifications
You must be signed in to change notification settings - Fork 0
Add CLAUDE.md guide and pixel game hub launcher #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
e787a42
75b232e
6037636
d6444ed
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,244 @@ | ||||||||
| # CLAUDE.md - BlackRoad OS Bridge Repository | ||||||||
|
|
||||||||
| ## What This Repository Is | ||||||||
|
|
||||||||
| This is **BlackRoad-OS/.github** ("The Bridge") - the central nervous system for a 15-organization AI routing ecosystem. It coordinates infrastructure, documentation, prototypes, blueprints, and interactive pixel worlds for the BlackRoad platform. | ||||||||
|
|
||||||||
| **Core Thesis:** BlackRoad is a routing company, not an AI company. It routes to intelligence (Claude, GPT, Llama, local models) rather than building its own. | ||||||||
|
|
||||||||
| --- | ||||||||
|
|
||||||||
| ## Repository Structure | ||||||||
|
|
||||||||
| ``` | ||||||||
| .github/ | ||||||||
| ├── CLAUDE.md # This file - AI assistant guide | ||||||||
| ├── README.md # Org landing page | ||||||||
| ├── INDEX.md # Browsable table of contents | ||||||||
| ├── MEMORY.md # Persistent session memory across conversations | ||||||||
| ├── SIGNALS.md # Morse-code style coordination protocol | ||||||||
| ├── STREAMS.md # Data flow patterns (upstream/instream/downstream) | ||||||||
| ├── REPO_MAP.md # Ecosystem architecture diagram | ||||||||
| ├── BLACKROAD_ARCHITECTURE.md # Core thesis, business model, infrastructure | ||||||||
| ├── .STATUS # Real-time ecosystem state beacon | ||||||||
| │ | ||||||||
| ├── CECE_ABILITIES.md # AI partner (Cece/Claude) abilities manifest | ||||||||
| ├── CECE_PROTOCOLS.md # Decision frameworks, escalation, PCDEL loop | ||||||||
| │ | ||||||||
| ├── blackroad-pixel/ # Interactive pixel art UI & games | ||||||||
| │ ├── index.html # Desktop OS simulation (main UI) | ||||||||
| │ ├── style.css # Retro pixel styling | ||||||||
| │ ├── app.js # Desktop interactivity | ||||||||
| │ └── games/ # Pixel game worlds | ||||||||
| │ ├── index.html # Game hub / launcher | ||||||||
| │ ├── stardew/index.html # BlackRoad Harvest (farming sim) | ||||||||
| │ ├── pokemon/index.html # BlackRoad Creatures (RPG) | ||||||||
| │ ├── webkinz/index.html # BlackRoad Pets (virtual pet world) | ||||||||
| │ └── mario/index.html # BlackRoad Runner (platformer) | ||||||||
| │ | ||||||||
| ├── orgs/ # 15 organization blueprints | ||||||||
| │ ├── BlackRoad-OS/ # Core infrastructure | ||||||||
| │ ├── BlackRoad-AI/ # Intelligence routing | ||||||||
| │ ├── BlackRoad-Cloud/ # Edge compute | ||||||||
| │ ├── BlackRoad-Hardware/ # Pi cluster + IoT | ||||||||
| │ ├── BlackRoad-Foundation/ # CRM & business | ||||||||
| │ ├── BlackRoad-Labs/ # R&D experiments | ||||||||
| │ ├── BlackRoad-Security/ # Zero-trust & vault | ||||||||
| │ ├── BlackRoad-Media/ # Content & publishing | ||||||||
| │ ├── BlackRoad-Interactive/ # Games & metaverse | ||||||||
| │ ├── BlackRoad-Education/ # Learning platform | ||||||||
| │ ├── BlackRoad-Gov/ # Civic tech | ||||||||
| │ ├── BlackRoad-Archive/ # Preservation | ||||||||
| │ ├── BlackRoad-Studio/ # Design tools | ||||||||
| │ ├── BlackRoad-Ventures/ # Business & investments | ||||||||
| │ └── Blackbox-Enterprises/ # Enterprise stealth | ||||||||
| │ | ||||||||
| ├── prototypes/ # Working Python code | ||||||||
| │ ├── cece-engine/ # Autonomous task processing (PCDEL loop) | ||||||||
| │ ├── operator/ # AI request routing engine | ||||||||
| │ ├── metrics/ # KPI dashboard | ||||||||
| │ ├── control-plane/ # Unified control interface | ||||||||
| │ ├── explorer/ # Ecosystem browser | ||||||||
| │ ├── dispatcher/ # Event dispatching | ||||||||
| │ ├── mcp-server/ # MCP protocol server | ||||||||
| │ └── webhooks/ # Webhook handlers (GitHub, Stripe, etc.) | ||||||||
| │ | ||||||||
| ├── templates/ # Integration templates | ||||||||
| │ ├── ai-router/ # Multi-provider AI routing | ||||||||
| │ ├── salesforce-sync/ # CRM synchronization | ||||||||
| │ ├── stripe-billing/ # Payment processing | ||||||||
| │ ├── cloudflare-workers/ # Edge compute | ||||||||
| │ ├── gdrive-sync/ # Google Drive | ||||||||
| │ ├── github-ecosystem/ # GitHub Actions | ||||||||
| │ └── design-tools/ # Figma + Canva | ||||||||
| │ | ||||||||
| ├── nodes/ # Hardware node configurations | ||||||||
| │ ├── cecilia.yaml # Mac dev machine | ||||||||
| │ ├── lucidia.yaml # Pi 5 + Hailo-8 | ||||||||
| │ ├── octavia.yaml # Pi 5 + Hailo-8 | ||||||||
| │ ├── aria.yaml # Pi 5 agent orchestration | ||||||||
|
||||||||
| │ ├── aria.yaml # Pi 5 agent orchestration | |
| │ ├── aria.yaml # Pi 5 agent orchestration | |
| │ ├── arcadia.yaml # Arcadia node configuration |
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The quick command cd prototypes/operator && python3 -m cli does not work in the current repo layout (there is no prototypes/operator/cli.py). The CLI entry point appears to be prototypes/operator/routing/cli.py, so the command should be updated (e.g. run the module under routing).
| cd prototypes/operator && python3 -m cli | |
| cd prototypes/operator && python3 -m routing.cli |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The repository structure diagram shows
.github/as the repo root, but this repository already contains a real.github/directory (for workflows). As written, the tree implies paths like.github/.github/workflows, which is misleading for contributors. Consider using./as the root in the diagram (or clarifying that.github/is the repo name, not a directory).