docs: add missing context to overview/architecture/ops/troubleshooting
This commit is contained in:
@@ -1,23 +1,45 @@
|
||||
# Overview
|
||||
|
||||
Mission Control is the **web UI + HTTP API** for operating OpenClaw. It’s where you manage boards, tasks, agents, approvals, and (optionally) gateway connections.
|
||||
Mission Control is the **web UI + HTTP API** for operating OpenClaw.
|
||||
|
||||
It’s 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.
|
||||
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.
|
||||
|
||||
## Key concepts (glossary-lite)
|
||||
|
||||
- **Board**: a workspace containing tasks, memory, and agents.
|
||||
- **Task**: unit of work on a board; has status and comments.
|
||||
- **Task**: a unit of work on a board (status + comments/evidence).
|
||||
- **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.
|
||||
- **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).
|
||||
|
||||
## 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)
|
||||
- Operating it? → [Ops / runbooks](09-ops-runbooks.md)
|
||||
|
||||
Reference in New Issue
Block a user