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.
npx claudepluginhub gablabelle/claude-plugins --plugin kanbanThis skill is limited to using the following tools:
You are executing planned work from the mcp-kanban board. Move tickets through columns and update them as you work.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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 ones