mission-control

Featured

Interact with Mission Control — AI agent orchestration dashboard. Use when registering agents, managing tasks, syncing skills, or querying agent/task status via MC APIs.

AI & Automation 5,858 stars 17 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Mission Control Agent Skill Mission Control (MC) is an AI agent orchestration dashboard with real-time SSE/WebSocket, a skill registry, framework adapters, and RBAC. This skill teaches agents how to interact with MC APIs programmatically. ## Quick Start **Base URL:** `http://localhost:3000` (default Next.js dev) or your deployed host. **Auth header:** `x-api-key: <your-api-key>` **Register + heartbeat in two calls:** ```bash # 1. Register curl -X POST http://localhost:3000/api/adapters \ -H "Content-Type: application/json" \ -H "x-api-key: $MC_API_KEY" \ -d '{ "framework": "generic", "action": "register", "payload": { "agentId": "my-agent-01", "name": "My Agent" } }' # 2. Heartbeat (repeat every 5 minutes) curl -X POST http://localhost:3000/api/adapters \ -H "Content-Type: application/json" \ -H "x-api-key: $MC_API_KEY" \ -d '{ "framework": "generic", "action": "heartbeat", "payload": { "agentId": "my-agent-01", "status": "online" } }' ``` ## Authentication MC supports two auth methods: | Method | Header | Use Case | |--------|--------|----------| | API Key | `x-api-key: <key>` or `Authorization: Bearer <key>` | Agents, scripts, CI/CD | | Session cookie | `Cookie: __Host-mc-session=<token>` (HTTPS) or `mc-session=<token>` (HTTP) | Browser UI | **Roles (hierarchical):** `viewer` < `operator` < `admin` - **viewer** — Read-only access (GET endpoints) - **operator** — Create/update agents, tasks, skills, use adapters - **admin...

Details

Author
builderz-labs
Repository
builderz-labs/mission-control
Created
5 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category