2026-02-07 13:41:05 +00:00
# OpenClaw Mission Control
2026-02-23 01:41:05 +05:30
[](https://github.com/abhi1693/openclaw-mission-control/actions/workflows/ci.yml) 
2026-02-13 00:41:32 +05:30
OpenClaw Mission Control is the centralized operations and governance platform for running OpenClaw across teams and organizations, with unified visibility, approval controls, and gateway-aware orchestration.
It gives operators a single interface for work orchestration, agent and gateway management, approval-driven governance, and API-backed automation.
2026-02-07 13:41:05 +00:00
2026-02-15 01:17:09 +05:30
<img width="1896" height="869" alt="Mission Control dashboard" src="https://github.com/user-attachments/assets/49a3c823-6aaf-4c56-8328-fb1485ee940f" />
<img width="1896" height="858" alt="image" src="https://github.com/user-attachments/assets/2bfee13a-3dab-4f4a-9135-e47bb6949dcf" />
<img width="1890" height="865" alt="image" src="https://github.com/user-attachments/assets/84c2e867-5dc7-4a36-9290-e29179d2a659" />
<img width="1912" height="881" alt="image" src="https://github.com/user-attachments/assets/3bbd825c-9969-4bbf-bf31-987f9168f370" />
<img width="1902" height="878" alt="image" src="https://github.com/user-attachments/assets/eea09632-60e4-4d6d-9e6e-bdfa0ac97630" />
2026-02-11 23:46:11 +05:30
2026-02-13 00:41:32 +05:30
## Platform overview
2026-02-07 15:42:09 +00:00
2026-02-13 00:41:32 +05:30
Mission Control is designed to be the day-to-day operations surface for OpenClaw.
Instead of splitting work across multiple tools, teams can plan, execute, review, and audit activity in one system.
2026-02-07 15:42:09 +00:00
2026-02-13 00:41:32 +05:30
Core operational areas:
2026-02-07 15:42:09 +00:00
2026-02-13 00:41:32 +05:30
- Work orchestration: manage organizations, board groups, boards, tasks, and tags.
- Agent operations: create, inspect, and manage agent lifecycle from a unified control surface.
- Governance and approvals: route sensitive actions through explicit approval flows.
- Gateway management: connect and operate gateway integrations for distributed environments.
- Activity visibility: review a timeline of system actions for faster debugging and accountability.
- API-first model: support both web workflows and automation clients from the same platform.
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
## Use cases
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
- Multi-team agent operations: run multiple boards and board groups across organizations from a single control plane.
- Human-in-the-loop execution: require approvals before sensitive actions and keep decision trails attached to work.
- Distributed runtime control: connect gateways and operate remote execution environments without changing operator workflow.
- Audit and incident review: use activity history to reconstruct what happened, when it happened, and who initiated it.
- API-backed process integration: connect internal workflows and automation clients to the same operational model used in the UI.
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
## What makes Mission Control different
2026-02-11 09:59:21 +00:00
2026-02-13 00:41:32 +05:30
- Operations-first design: built for running agent work reliably, not just creating tasks.
- Governance built in: approvals, auth modes, and clear control boundaries are first-class.
- Gateway-aware orchestration: built to operate both local and connected runtime environments.
- Unified UI and API model: operators and automation act on the same objects and lifecycle.
- Team-scale structure: organizations, board groups, boards, tasks, tags, and users in one system of record.
2026-02-11 09:59:21 +00:00
2026-02-13 00:41:32 +05:30
## Who it is for
2026-02-11 10:08:36 +00:00
2026-02-13 00:41:32 +05:30
- Platform teams running OpenClaw in self-hosted or internal environments.
- Operations and engineering teams that need clear approval and auditability controls.
- Organizations that want API-accessible operations without losing a usable web UI.
2026-02-11 19:10:23 +05:30
2026-02-13 00:41:32 +05:30
## Get started in minutes
2026-02-11 09:59:21 +00:00
2026-02-13 14:41:27 +05:30
### Option A: One-command production-style bootstrap
2026-02-13 16:40:13 +00:00
If you haven't cloned the repo yet, you can run the installer in one line:
```bash
curl -fsSL https://raw.githubusercontent.com/abhi1693/openclaw-mission-control/master/install.sh | bash
```
If you already cloned the repo:
2026-02-13 14:41:27 +05:30
```bash
./install.sh
```
The installer is interactive and will:
- Ask for deployment mode (`docker` or `local` ).
- Install missing system dependencies when possible.
- Generate and configure environment files.
- Bootstrap and start the selected deployment mode.
2026-02-13 09:40:54 +00:00
Installer support matrix: [`docs/installer-support.md` ](./docs/installer-support.md )
2026-02-13 14:41:27 +05:30
### Option B: Manual setup
2026-02-13 00:41:32 +05:30
### Prerequisites
2026-02-11 09:59:21 +00:00
2026-02-13 00:41:32 +05:30
- Docker Engine
- Docker Compose v2 (`docker compose` )
2026-02-11 09:59:21 +00:00
2026-02-13 00:41:32 +05:30
### 1. Configure environment
2026-02-07 13:41:05 +00:00
```bash
cp .env.example .env
2026-02-13 00:41:32 +05:30
```
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
Before startup:
2026-02-11 19:30:25 +05:30
2026-02-13 00:41:32 +05:30
- Set `LOCAL_AUTH_TOKEN` to a non-placeholder value (minimum 50 characters) when `AUTH_MODE=local` .
- Ensure `NEXT_PUBLIC_API_URL` is reachable from your browser.
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
### 2. Start Mission Control
2026-02-11 10:08:36 +00:00
2026-02-13 00:41:32 +05:30
```bash
2026-02-07 13:41:05 +00:00
docker compose -f compose.yml --env-file .env up -d --build
```
2026-02-13 00:41:32 +05:30
### 3. Open the application
- Mission Control UI: http://localhost:3000
2026-02-07 13:41:05 +00:00
- Backend health: http://localhost:8000/healthz
2026-02-13 00:41:32 +05:30
### 4. Stop the stack
2026-02-07 13:41:05 +00:00
```bash
docker compose -f compose.yml --env-file .env down
```
2026-02-13 00:41:32 +05:30
## Authentication
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
Mission Control supports two authentication modes:
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
- `local` : shared bearer token mode (default for self-hosted use)
- `clerk` : Clerk JWT mode
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
Environment templates:
- Root: [`.env.example` ](./.env.example )
- Backend: [`backend/.env.example` ](./backend/.env.example )
- Frontend: [`frontend/.env.example` ](./frontend/.env.example )
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
## Documentation
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
Complete guides for deployment, production, troubleshooting, and testing are in [`/docs` ](./docs/ ).
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
## Project status
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
Mission Control is under active development.
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
- Features and APIs may change between releases.
- Validate and harden your configuration before production use.
2026-02-07 15:54:42 +00:00
2026-02-13 00:41:32 +05:30
## Contributing
2026-02-07 13:41:05 +00:00
2026-02-13 00:41:32 +05:30
Issues and pull requests are welcome.
- [Contributing guide ](./CONTRIBUTING.md )
- [Open issues ](https://github.com/abhi1693/openclaw-mission-control/issues )
2026-02-11 10:09:29 +00:00
## License
This project is licensed under the MIT License. See [`LICENSE` ](./LICENSE ).
2026-02-11 20:45:24 +00:00
## Star History
[](https://www.star-history.com/#abhi1693/openclaw -mission-control&type=date&legend=top-left)