Setup
Mission Control Cloud is the hosted control plane. Each codebase installs a local Collab Adapter. Actors (humans, agents, and integrations) enroll with kind, runtime, roles, and capabilities. Cloud manages state, routing, and verification.
Install CLI
Pair machine
Register project
Enroll actors
Verify runtime
Open Console
Architecture
Hosted control plane. Operations Console, routing, verification, upgrades. Does not access your filesystem directly.
Each repo gets .collab/ with project.json, agents.json, runtime reports. Agent execution stays local.
1. Install CLI
npx @mission-control/collab initOr from source: clone mission-control → npm link
Key commands (v0.3.0)
$ collab go # 3-min morning routine (status + reply + kick)$ collab next # what needs your input? (with suggested answers)$ collab reply "answer" # auto-resolves + copies kick message$ collab kickall # resume all stale agents at once$ collab watch # live monitor with macOS notifications$ collab help # all 30+ commands2. Register Project
$ cd ~/Coding/my-projectcollab initCreates .collab/project.json + scaffolds docs/COLLAB.md if missing.
3. Enroll Actors
Actors are humans, AI agents, or integrations. Each enrolls with a visible kind, runtime, assigned roles, and capabilities.
Step-by-step
collab actor enroll --kind agent --runtime Cursor --roles builder,architect --project my-project| Kind | Runtime | Roles | Policy |
|---|---|---|---|
| human | browser UI | product_owner, decision_owner | async |
| agent | Cursor | builder, architect | immediate-init |
| agent | Codex | verifier, reviewer | next-heartbeat |
| agent | Claude Code | configurable | configurable |
| integration | GitHub Actions | verifier | event-driven |
4. Verify Runtime
collab report-runtime --agent cursor@my-project --health runningFirst runtime report moves agent from "configured" to "proven". Dashboard distinguishes explicit proof from git-inferred activity.
Project Adapter Status
| Project | Adapter | Protocol | Agents | Status |
|---|---|---|---|---|
| mission-control | 0.1.0 | 0.3.0 | 2 | current |
| vibeful | — | — | — | missing |
| beefit | — | — | — | missing |
5. Version & Upgrades
| Component | Version | Status |
|---|---|---|
| MC Cloud | 0.3.0 | current |
| Protocol | 0.3.0 | current |
| Rules Bundle | 2026.05.18 | current |
| Project Adapter | 0.1.0 | current |
| Gate Spec | 1.0.0 | current |
Projects track these versions in .collab/project.json. Run collab upgrade to adopt latest.