From kanban
Break work into stories and subtasks on the Kanban board. Use when the user describes a feature, task, or body of work that should be planned, decomposed, or organized into trackable tickets.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kanban:kanban-planThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are planning work by breaking it into stories and subtasks on the mcp-kanban board.
You are planning work by breaking it into stories and subtasks on the mcp-kanban board.
You MUST call mcp__kanban__open_board FIRST, before any other kanban tool. This starts the web UI server. Wait for it to return, then open the URL in the browser:
open "<url from open_board>"
Do NOT call list_columns, list_tickets, create_ticket, or any other kanban tool until this step is complete.
Use mcp__kanban__list_columns to get the available columns and their IDs. Identify which column is best for new planned work (typically "Backlog" or "Todo").
Use mcp__kanban__list_tickets to check for existing tickets so you don't create duplicates.
Read relevant code files to understand the current state. Break the work described in $ARGUMENTS into:
For each story:
mcp__kanban__create_ticket — use a clear title and a description that explains the goal, acceptance criteria, and any relevant technical contextmcp__kanban__create_subtask — each subtask should have a concise title and a description covering what specifically needs to be donePlace stories in the "Backlog" or "Todo" column (whichever makes more sense given the board's column structure).
Set appropriate priorities: urgent for blockers, high for critical path items, medium for standard work, low for nice-to-haves.
After all tickets are created, present a summary:
Then ask the user: "The plan is on the board. Would you like me to start working through these tickets?"
If the user confirms, invoke the kanban-work workflow.
npx claudepluginhub gablabelle/claude-plugins --plugin kanbanManages persistent Kanban board synced with TodoWrite for multi-step tasks, progress tracking, and AI agent coordination. Activates on 3+ TodoWrite items, kanban mentions, or multi-step starts.
Manage a Markdown-based Kanban board using card files in a kanban/ directory (including kanban/archived/ for completed cards). Use when the user asks to create, move, view, list, or manage tasks or cards on a kanban board, or when tracking work items across statuses like backlog, todo, doing, done, or archive.
Breaks down plans, specs, or PRDs into independent issues using vertical slices (tracer bullets). Useful for converting plans into implementation tickets or breaking down work into granular, demo-able tasks.