2.0 KiB
2.0 KiB
Mission Control Wiki
Last reviewed: 2026-03-05
Mission Control is an open-source dashboard for orchestrating AI agents: agents, tasks, costs, workflows, and gateway connectivity in one place.
Start Here
- Product overview: README
- Local + production setup: docs/deployment.md
- Direct CLI integration (without gateway): docs/cli-integration.md
- Security policy: SECURITY.md
- Contribution guide: CONTRIBUTING.md
- Release history: CHANGELOG.md
Quick Start (5 Minutes)
git clone https://github.com/builderz-labs/mission-control.git
cd mission-control
pnpm install
cp .env.example .env
pnpm dev
Then open http://localhost:3000 and sign in with the seeded AUTH_USER/AUTH_PASS values from your environment.
Core Concepts
- Agent: A worker connected to Mission Control that executes tasks and reports status/usage.
- Task: A unit of work tracked across workflow columns (
inbox -> done) with comments and ownership. - Gateway: Real-time connection layer (OpenClaw and compatible providers) for session/event streaming.
- Workspace/Tenant: Isolated environment for multi-client operations, managed via
/api/super/*endpoints.
Recommended Wiki Structure
Home(this page)Getting-Started- install, auth, first login, and initial checksArchitecture- runtime model, data flow, and component mapOperations-Runbook- backups, upgrades, troubleshooting, incident stepsAPI-Guide- endpoint groups, auth patterns, and examplesSecurity-Model- auth, RBAC, API keys, host/network controlsIntegrations- webhooks, GitHub sync, direct CLI, multi-gateway setupFAQ- common operator/admin questions
Notes For Maintainers
- Keep wiki pages aligned with shipped behavior in the same PR when features change.
- Add a
Last reviewedline to each operational page. - Prefer linking to source-of-truth docs in this repo when possible.