Files
openclaw-mission-control/docs/01-overview.md
2026-02-11 06:15:54 +00:00

24 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Overview
Mission Control is the **web UI + HTTP API** for operating OpenClaw. Its where you manage boards, tasks, agents, approvals, and (optionally) gateway connections.
## Problem statement
- Provide a single place to coordinate work (boards/tasks) and execute automation (agents) safely.
## Non-goals (first pass)
- Not a general-purpose project management suite.
- Not a full observability platform.
## Key concepts (glossary-lite)
- **Board**: a workspace containing tasks, memory, and agents.
- **Task**: unit of work on a board; has status and comments.
- **Agent**: an automated worker that can execute tasks and post evidence.
- **Gateway**: OpenClaw runtime host that executes tools/skills and runs heartbeats/cron.
- **Heartbeat**: periodic agent check-in loop for doing incremental work.
- **Cron job**: scheduled execution (recurring or one-shot) isolated from conversational context.
## Where to go next
- Want it running? → [Quickstart](02-quickstart.md)
- Want to contribute? → [Development](03-development.md)
- Want to understand internals? → [Architecture](05-architecture.md)