← ClaudeAtlas

boardlisted

Visual task management dashboard. Terminal-based kanban board, tiled agent status view, and progress tracking. Shows all agents, their current tasks, budget consumption, and overall workspace health at a glance. Triggers on: "board", "dashboard", "kanban", "status board", "show agents"
Miosa-osa/canopy · ★ 212 · Data & Documents · score 74
Install: claude install-skill Miosa-osa/canopy
# /board > Visual task management — kanban board, agent status, progress dashboard. ## Purpose The command center for multi-agent workspaces. Renders a terminal-based view of all active work: who's doing what, what's blocked, what's done, and how much budget remains. Three view modes: kanban (task-centric), agents (agent-centric), and summary (metrics-centric). Designed for the orchestrator to maintain situational awareness. ## Usage ```bash # Default kanban view /board # Agent-centric view /board agents # Summary metrics view /board summary # Filter by status /board --status in_progress # Filter by agent /board --agent researcher # Watch mode (auto-refresh) /board --watch # Compact view (fits small terminals) /board --compact ``` ## Arguments | Subcommand | Description | |------------|-------------| | (default) | Kanban board view | | `agents` | Agent-centric tiled view | | `summary` | Metrics dashboard | | Flag | Type | Default | Description | |------|------|---------|-------------| | `--status` | enum[] | `all` | Filter: `backlog`, `ready`, `in_progress`, `blocked`, `done` | | `--agent` | string | `all` | Filter to specific agent | | `--watch` | flag | false | Auto-refresh every 5 seconds | | `--compact` | flag | false | Condensed view for small terminals | | `--since` | duration | `24h` | Time window for completed tasks | | `--show-budget` | flag | true | Show budget consumption bars | | `--show-timeline` | flag | false | Show task timeline (Gantt-style) |