Mission Control v1.0.0
The open-source dashboard for AI agent orchestration.
Manage agent fleets, track tasks, monitor costs, and orchestrate workflows — all from a single pane of glass.
Highlights
- 26 panels — Tasks, agents, logs, tokens, memory, cron, alerts, webhooks, pipelines, and more
- Real-time everything — WebSocket + SSE push updates with smart polling
- Zero external dependencies — SQLite database, single
pnpm startto run - Role-based access — Viewer, operator, and admin roles with session + API key auth
- Quality gates — Built-in review system that blocks task completion without sign-off
- Multi-gateway — Connect to multiple OpenClaw gateways simultaneously
Quick Start
```bash
git clone https://github.com/builderz-labs/mission-control.git
cd mission-control
pnpm install
cp .env.example .env # edit with your values
pnpm dev # http://localhost:3000
```
Tech Stack
| Layer | Technology |
|---|---|
| Framework | Next.js 16 (App Router) |
| UI | React 19, Tailwind CSS 3.4 |
| Language | TypeScript 5.7 (strict mode) |
| Database | SQLite via better-sqlite3 (WAL mode) |
| State | Zustand 5 |
| Charts | Recharts 3 |
| Real-time | WebSocket + Server-Sent Events |
| Auth | scrypt hashing, session tokens, RBAC |
| Testing | Vitest + Playwright (52 E2E tests) |
Security Hardening
- Auth guards on all GET endpoints (#4)
- Timing-safe API key comparison (#5)
- XSS sanitization in memory browser (#6)
- Legacy cookie auth removed (#7)
- Login rate limiting — 5 attempts/min per IP (#8)
- SSRF protection on gateway health probes (#9)
- SQL injection fix — parameterized queries (#10)
- CSP hardening — removed unsafe-eval (#15)
- CSRF Origin validation (#20)
- SQLite foreign_keys pragma enabled (#33)
- Missing database indexes on hot query paths (#33)
Quality & DX
- TypeScript strict mode (#11)
- 52 Playwright E2E tests (#12, #29)
- Pagination total counts (#13)
- N+1 query fixes (#14)
- DELETE body standardization (#18)
- Query limit caps at 200 (#19)
- CI pipeline — lint + typecheck + unit tests + build + E2E (#30)
Community
- CODE_OF_CONDUCT.md — Contributor Covenant 2.1
- CONTRIBUTING.md — Development workflow and guidelines
- SECURITY.md — Vulnerability reporting policy
- Issue templates for bug reports and feature requests
- Pull request template with risk level and security checklist
Full Changelog: https://github.com/builderz-labs/mission-control/commits/v1.0.0