Dashboard & Kanban โ
Quick Reference
- URL:
http://codymaster.localhost:48120- Type: Single Page Application (SPA)
- Features: Kanban board, deploy tracking, activity log, judge suggestions
Starting the Dashboard โ
bash
# Start
cm dashboard start
# Open in browser
cm open
# Check status
cm dashboard status
# Stop
cm dashboard stopKanban Board โ
The dashboard presents a 4-column Kanban board:
| Column | Meaning | Color |
|---|---|---|
| Backlog | Tasks waiting to be started | โช Gray |
| In Progress | Currently being worked on | ๐ต Blue |
| Review | Awaiting review or QA | ๐ก Yellow |
| Done | Completed and verified | ๐ข Green |
Task Management โ
Adding Tasks:
bash
# Via CLI
cm task add "Fix auth bug" --priority high --agent antigravity --skill cm-debugging
# Via Dashboard
# Click "+ Add Task" button in any columnMoving Tasks:
bash
# Via CLI
cm task move <task-id> in-progress
cm task move <task-id> review
cm task done <task-id>
# Via Dashboard
# Drag cards between columnsDispatching to AI Agents:
bash
# Via CLI
cm task dispatch <task-id>
# Via Dashboard
# Click the "Dispatch" button on a task cardTask Properties โ
| Property | Values | Description |
|---|---|---|
| Title | Free text | Task description |
| Priority | low ยท medium ยท high ยท urgent | Determines processing order |
| Agent | antigravity ยท claude ยท cursor ยท etc | Which AI agent handles this |
| Skill | cm-tdd ยท cm-debugging ยท etc | Which skill protocol to follow |
| Column | backlog ยท in-progress ยท review ยท done | Current state |
Project Management โ
Creating Projects โ
bash
# Via CLI
cm project add "My Web App" --path /path/to/project
# Via Dashboard API
POST /api/projects { "name": "My Web App", "path": "/path/to/project" }Project Dashboard โ
Each project shows:
- Task count โ total and by column
- Active agents โ which AI agents are assigned
- Completion percentage โ visual progress bar
- Recent activity โ last 5 actions
Deployment Tracking โ
Track deployments across staging and production:
bash
# Record a staging deploy
cm deploy staging -m "Fix login flow"
# Record a production deploy
cm deploy production -m "Release v2.1"
# View deployment history
cm deploy list
# Rollback a deployment
cm rollback <deploy-id>Deploy Statuses โ
| Status | Icon | Meaning |
|---|---|---|
pending | ๐ก | Deploying |
running | ๐ต | In progress |
success | ๐ข | Successfully deployed |
failed | ๐ด | Deploy failed |
rolled_back | ๐ฃ | Rolled back |
Judge Agent โ
The Judge Agent provides automated task health evaluation:
bash
# Evaluate all tasks
cm judge
# Check for stuck tasks
cm task stuckJudge Suggestions โ
The Judge monitors all in-progress tasks and:
- โ ๏ธ Flags tasks stuck for >30 minutes
- ๐ค Suggests the best agent for each skill
- ๐ Recommends state transitions (e.g., "move to review")
Activity History โ
bash
# View recent activity
cm history
# View last 50 activities for a project
cm history -n 50 --project "My Project"Activity types: task_created, task_moved, task_done, deploy_staging, deploy_production, rollback, chain_started, chain_completed
Auto-Refresh โ
The dashboard includes an auto-refresh feature with a configurable interval. Look for the sync indicator in the sidebar โ it shows when data was last loaded and allows toggling auto-refresh on/off.
Next Steps โ
- Working Memory โ โ Context persistence
- API Reference โ โ REST API documentation
- Skills Library โ โ Browse available automation