From kanban
Start working through planned tickets on the Kanban board. Use when the user wants to begin executing planned work, or confirms they want to start after planning. Moves tickets through columns and updates them as work progresses.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kanban:kanban-workThis 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 executing planned work from the mcp-kanban board. Move tickets through columns and update them as you work.
You are executing planned work from the mcp-kanban board. Move tickets through columns and update them as you work.
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 any other kanban tool until this step is complete.
Use mcp__kanban__list_columns to get the column IDs. Identify:
Use mcp__kanban__list_tickets to see all tickets and find which ones are ready to work on (in Backlog or Todo).
If $ARGUMENTS specifies a ticket or story, start with that. Otherwise, pick the highest-priority story that hasn't been started yet.
Use mcp__kanban__get_ticket to read the full ticket details including subtasks.
Use mcp__kanban__move_ticket to move the parent story to the "in progress" column. This signals on the board that work has begun.
For each subtask in the story:
mcp__kanban__move_ticketmcp__kanban__update_ticket to add implementation notes to the subtask description — what was done, what files were changed, any decisions mademcp__kanban__complete_subtask to move the subtask to DoneOnce all subtasks are done:
mcp__kanban__update_ticket to update the parent story's description with a summary of what was implementedmcp__kanban__move_ticketAfter completing a story, check if there are more stories to work on:
mcp__kanban__create_subtask rather than expanding the scope of existing onesnpx 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.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.