2026-02-11 06:15:54 +00:00
|
|
|
|
# Overview
|
|
|
|
|
|
|
2026-02-11 09:45:29 +00:00
|
|
|
|
Mission Control is the **web UI + HTTP API** for operating OpenClaw.
|
|
|
|
|
|
|
|
|
|
|
|
It’s where you manage **boards**, **tasks**, **agents**, **approvals**, and (optionally) **gateway connections**.
|
2026-02-11 06:15:54 +00:00
|
|
|
|
|
|
|
|
|
|
## Problem statement
|
|
|
|
|
|
|
2026-02-11 09:45:29 +00:00
|
|
|
|
OpenClaw can execute work (tools/skills) and converse across channels, but real operations need a place to:
|
|
|
|
|
|
|
|
|
|
|
|
- **Coordinate** work across people + agents (what’s next, what’s blocked, who owns what)
|
|
|
|
|
|
- **Track evidence** of what happened (commands run, links, logs, artifacts)
|
|
|
|
|
|
- **Control risk** (approvals, guardrails, isolation)
|
|
|
|
|
|
- **Operate reliably** (deployment, configuration, troubleshooting)
|
|
|
|
|
|
|
|
|
|
|
|
Mission Control provides that control plane.
|
|
|
|
|
|
|
|
|
|
|
|
## Who uses it
|
|
|
|
|
|
|
|
|
|
|
|
- **Maintainers / operators**: keep Mission Control + gateways healthy, deploy upgrades, respond to incidents.
|
|
|
|
|
|
- **Contributors**: develop backend/frontend changes, run tests, ship docs.
|
|
|
|
|
|
- **Automation authors**: define agent identities, skills, and task workflows.
|
2026-02-11 06:15:54 +00:00
|
|
|
|
|
|
|
|
|
|
## Key concepts (glossary-lite)
|
2026-02-11 09:45:29 +00:00
|
|
|
|
|
2026-02-11 06:15:54 +00:00
|
|
|
|
- **Board**: a workspace containing tasks, memory, and agents.
|
2026-02-11 09:45:29 +00:00
|
|
|
|
- **Task**: a unit of work on a board (status + comments/evidence).
|
2026-02-11 06:15:54 +00:00
|
|
|
|
- **Agent**: an automated worker that can execute tasks and post evidence.
|
2026-02-11 09:45:29 +00:00
|
|
|
|
- **Approval**: a structured “allow/deny” checkpoint for risky actions.
|
|
|
|
|
|
- **Gateway**: the OpenClaw runtime host that executes tools/skills and runs heartbeats/cron.
|
|
|
|
|
|
- **Heartbeat**: periodic agent check-in loop for incremental work.
|
|
|
|
|
|
- **Cron job**: scheduled execution (recurring or one-shot), often isolated from conversational context.
|
|
|
|
|
|
|
|
|
|
|
|
## Non-goals
|
|
|
|
|
|
|
|
|
|
|
|
- Not a general-purpose project management suite (we optimize for AI-assisted operations, not every PM feature).
|
|
|
|
|
|
- Not a full observability platform (we integrate with logs/metrics rather than replacing them).
|
|
|
|
|
|
- Not a secrets manager (we reference secret sources; don’t store secrets in docs/tasks/comments).
|
2026-02-11 06:15:54 +00:00
|
|
|
|
|
|
|
|
|
|
## Where to go next
|
2026-02-11 09:45:29 +00:00
|
|
|
|
|
2026-02-11 06:15:54 +00:00
|
|
|
|
- Want it running? → [Quickstart](02-quickstart.md)
|
|
|
|
|
|
- Want to contribute? → [Development](03-development.md)
|
|
|
|
|
|
- Want to understand internals? → [Architecture](05-architecture.md)
|
2026-02-11 09:45:29 +00:00
|
|
|
|
- Operating it? → [Ops / runbooks](09-ops-runbooks.md)
|