A self-hosted dashboard that treats AI agents like production infra
It gives teams a local-first control room for dispatching AI tasks, tracking token spend, and enforcing security rules across agent fleets.

What it does
Mission Control is a self-hosted Next.js dashboard for managing AI agent fleets. It wraps task dispatch, multi-agent workflows, token-cost tracking, and security auditing into a single SQLite-backed application that runs without Redis, Postgres, or Docker. You register agents, move tasks across a Kanban board, and monitor trust scores and memory graphs from one interface.
The interesting bit
Most open-source agent tools stop at prompt chaining; this one treats operations as a first-class concern. It includes a four-layer evaluation framework, mandatory quality gates that block task completion until signed off, and hook profiles ranging from minimal to strict. The gateway-optional mode is a nice touch: you can use the task board, scheduler, and cost panels even if your agents are just local CLI scripts with no gateway connection.
Key highlights
- 32-panel SPA covering tasks, agents, skills, memory, cron, alerts, webhooks, and cost tracking.
- SQLite-only core with no mandatory external dependencies; hardened Docker profiles are available but optional.
- Multi-gateway adapters for OpenClaw, CrewAI, LangGraph, AutoGen, and Claude SDK.
- Security tooling includes RBAC, secret detection, MCP call auditing, and per-agent trust scoring.
- Natural-language cron scheduling and a four-layer eval framework with drift detection against a 4-week baseline.
Caveats
- Explicitly alpha: APIs, database schemas, and configuration formats may change between releases.
- Several feature screenshots were temporarily removed from the README because they no longer reflect the current UI.
- The authors advise reviewing security considerations before deploying to production.
Verdict
Worth a look if you are running multiple agents and need centralized observability with cost and security controls. Skip it if you want a stable, battle-tested platform or only run a single agent sporadically.
Frequently asked
- What is builderz-labs/mission-control?
- It gives teams a local-first control room for dispatching AI tasks, tracking token spend, and enforcing security rules across agent fleets.
- Is mission-control open source?
- Yes — builderz-labs/mission-control is open source, released under the MIT license.
- What language is mission-control written in?
- builderz-labs/mission-control is primarily written in TypeScript.
- How popular is mission-control?
- builderz-labs/mission-control has 5.8k stars on GitHub and is currently cooling off.
- Where can I find mission-control?
- builderz-labs/mission-control is on GitHub at https://github.com/builderz-labs/mission-control.