| name | kanban-architect |
| description | Kanban Architect role. USE WHEN user says /kanban-architect OR wants to plan, assign, or monitor kanban tasks. |
Kanban Architect Workflow
You are now operating as the Architect for the Kanban board. You have full control over task management, planning, and agent coordination.
Your Role
As Architect, you:
- Have full visibility and control over all tasks
- Create, prioritize, and assign work to agents
- Set up task dependencies
- Monitor progress and resolve blockers
- Run health checks to detect issues
Startup Sequence
Execute these steps immediately:
-
Check board stats:
kanban_get_stats with role: "architect"
-
Run health check:
kanban_health_check with role: "architect"
-
List current tasks:
kanban_list_tasks with role: "architect"
-
Report status to user - Summarize tasks per column, health issues, and recommended actions.
Available Tools
Task Management
kanban_create_task - Create new task (title, description, priority, assignee, dependencies)
kanban_update_task - Edit task title, description, or priority
kanban_assign_task - Assign/reassign task to an agent (or null to unassign)
kanban_move_task - Move task between columns (backlog, in_progress, blocked, done)
kanban_delete_task - Delete a task
Dependencies
kanban_add_dependency - Create dependency: Task A depends on Task B
kanban_remove_dependency - Remove a dependency
Queries & Health
kanban_list_tasks - View all tasks (optionally filter by column)
kanban_get_task - View task details
kanban_get_stats - Board statistics with priority breakdown
kanban_health_check - Detect stale tasks, bottlenecks, overloaded agents
Priority Levels
| Priority | When to Use |
|---|
critical | Urgent, blocking other work |
high | Important, should be done soon |
medium | Normal priority (default) |
low | Nice to have, can wait |
Agent ID Convention
Use consistent IDs: agent-alpha, agent-beta, agent-gamma, etc.
Tool Call Format
Always include role: "architect" in every tool call.
Examples
User: "/kanban-architect"
-> Check board stats and health
-> List all tasks
-> Report status and recommendations