| name | mission-control |
| version | 2.0.0 |
| description | Kanban-style task management dashboard for AI assistants. Manage tasks via CLI or dashboard UI. Use when user mentions tasks, kanban, task board, mission control, or wants to track work items with status columns (backlog, in progress, review, done). |
| author | G-HunterAi |
| homepage | https://github.com/rdsthomas/mission-control |
| repository | https://github.com/rdsthomas/mission-control |
| license | MIT |
| tags | ["kanban","tasks","dashboard","project-management","github-pages","automation"] |
| keywords | ["task management","kanban board","AI workflow","GitHub Pages","webhook automation"] |
| screenshot | https://raw.githubusercontent.com/rdsthomas/mission-control/main/docs/images/dashboard.png |
| platforms | ["macos","linux","windows"] |
| category | infrastructure |
| emoji | 🎛️ |
| metadata | {"clawdbot":{"emoji":"🎛️","minVersion":"1.0.0"}} |
Mission Control — Task Management for AI Assistants
A Kanban-style task board that you (the AI assistant) manage. Your human creates and prioritizes tasks via the web dashboard; you execute them automatically when they're moved to "In Progress".
When to Use
- Tracking work items with status columns (backlog, in progress, review, done)
- Managing tasks with subtasks and priority levels
- Automating task execution via webhooks
- Monitoring task progress and providing updates
When NOT to Use
- Real-time collaboration on a single task (async model only)
- Complex dependencies between tasks (use linear relationships instead)
- Tasks requiring immediate human interaction (use manual status updates)
🚀 Quick Start
Just say: "Set up Mission Control for my workspace"
The agent will:
- Check prerequisites (Tailscale, gh CLI)
- Copy dashboard files to your workspace
- Create the config file (
~/.clawdbot/mission-control.json)
- Install the webhook transform
- Set up GitHub webhook
- Push to GitHub and enable Pages
That's it. The agent handles everything.
Prerequisites
Before setup, you need:
| Requirement | Check | Install |
|---|
| Tailscale | tailscale status | brew install tailscale or tailscale.com/download |
| Tailscale Funnel | tailscale funnel status | tailscale funnel 18789 (one-time) |
| GitHub CLI | gh auth status | brew install gh && gh auth login |
If any are missing, tell the agent — it will guide you through installation.
How It Works
- Dashboard — Web UI hosted on GitHub Pages where humans manage tasks
- Webhook — GitHub sends push events to Clawdbot when tasks change
- Transform — Compares old vs new tasks.json, detects status changes
- Auto-Processing — When a task moves to "In Progress", the agent starts working
The Flow
Human moves task → GitHub push → Webhook → Transform → Agent receives work order
↓ ↓
Dashboard Executes task
↓ ↓
Agent updates status ← Commits changes ← Marks subtasks done ←─┘
Task Structure
Tasks live in <workspace>/data/tasks.json:
{
"id": "task_001",
"title": "Implement feature X",
"description": "Detailed context for the agent",
"status": "backlog",
"subtasks": [
{ "id": "sub_001", "title": "Research approach", "done": false },
{ "id": "sub_002", "title": "Write code", "done": false }
],
"priority": "high",
"dod": "Definition of Done - what success looks like",
"comments": []
}
Status Values
| Status | Meaning |
|---|
permanent | Recurring tasks (daily checks, etc.) |
backlog | Waiting to be worked on |
in_progress | Agent is working on this |
review | Done, awaiting human approval |
done | Completed and approved |
CLI Commands
Use <skill>/scripts/mc-update.sh for task updates:
mc-update.sh status <task_id> review
mc-update.sh status <task_id> done
mc-update.sh comment <task_id> "Progress update..."
mc-update.sh subtask <task_id> sub_1 done
mc-update.sh complete <task_id> "Summary of what was done"
mc-update.sh push "Commit message"
Agent Workflow
When you receive a task (moved to "In Progress"):
- Read — Check title, description, subtasks, dod
- Mark started —
mc-update.sh start <task_id>
- Execute — Work through subtasks, mark each done
- Document — Add progress comments
- Complete —
mc-update.sh complete <task_id> "Summary"
Handling Rework
If a completed task is moved back to "In Progress" with a new comment:
- Read the feedback comment
- Address the issues
- Add a comment explaining your changes
- Move back to Review
EPICs
EPICs are parent tasks with multiple child tickets. When you receive an EPIC:
- Child tickets are listed in the subtasks (format:
MC-XXX-001: Title)
- Work through them sequentially (1 → 2 → 3...)
- After each child: comment result, set to "review", mark EPIC subtask done
- After last child: set EPIC to "review"
Heartbeat Integration
Add to your HEARTBEAT.md:
## Task Check
1. Check `data/tasks.json` for tasks in "in_progress"
2. Flag tasks with `processingStartedAt` but no recent activity
3. Check "review" tasks for new feedback comments
Configuration
Config lives in ~/.clawdbot/mission-control.json. See assets/examples/CONFIG-REFERENCE.md for all options.
Minimal config (set by agent during setup):
{
"gateway": { "hookToken": "your-token" },
"workspace": { "path": "/path/to/workspace" },
"slack": { "botToken": "xoxb-...", "channel": "C0123456789" }
}
Common Issues
| Error | Cause | Fix |
|---|
| Config not found | Missing ~/.clawdbot/mission-control.json | Run setup: create the config file with your GitHub token and workspace path |
| Webhook not firing | Tailscale Funnel not enabled or port mismatch | Verify tailscale funnel status and check port in config matches |
| Dashboard shows stale data | GitHub Pages cache | Hard refresh (Ctrl+Shift+R) or wait 5 minutes for cache expiry |
| Permission denied on push | GitHub token lacks repo scope | Regenerate token with full repo permissions |
| Tasks not syncing | Webhook transform script error | Check ~/.clawdbot/hooks-transforms/github-mission-control.mjs for syntax errors |
Troubleshooting
See docs/TROUBLESHOOTING.md for common issues and solutions.
Works Well With
- workflow-orchestrator — Chain mission control tasks with other automations
- slack-discord — Send task notifications and updates to Slack
- notion-skill — Sync tasks with Notion database
- git-github — Commit task changes and trigger GitHub workflows
Files
| File | Purpose |
|---|
<workspace>/index.html | Dashboard UI |
<workspace>/data/tasks.json | Task data |
<skill>/scripts/mc-update.sh | CLI tool |
~/.clawdbot/mission-control.json | Config |
~/.clawdbot/hooks-transforms/github-mission-control.mjs | Webhook transform |
Pitfalls
- Document failure modes as you encounter them