kanban-management
The kanban-management skill initializes and maintains Kanban board state for organizing software features through a development workflow. Use it to create boards with five standard columns (Backlog, Ready, In Progress, Review, Done), assign priority scores to feature cards, enforce work-in-progress limits per column, and generate snapshots of board state for the Feature Planner agent during project planning phases.
git clone --depth 1 https://github.com/a5c-ai/babysitter /tmp/kanban-management && cp -r /tmp/kanban-management/library/methodologies/automaker/skills/kanban-management ~/.claude/skills/kanban-managementSKILL.md
# Kanban Management Initialize and manage Kanban board state for feature workflow tracking. ## Agent Feature Planner - `automaker-feature-planner` ## Workflow 1. Create Kanban board with columns: Backlog, Ready, In Progress, Review, Done 2. Place features as cards in Backlog 3. Assign priority scores to cards 4. Establish WIP limits per column 5. Track card movement through columns 6. Generate board state snapshots ## Inputs - `projectName` - Project name - `features` - Feature list to place on board - `baseBranch` - Base branch for context ## Outputs - Board state with columns, cards, WIP limits, and priority assignments ## Process Files - `automaker-orchestrator.js` - Phase 1
Review TypeScript code changes for consistency, type safety, and monorepo patterns across babysitter packages
Generate and validate documentation for @a5c-ai/babysitter-sdk CLI commands and exported APIs
Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.
Architect code review with DRY, YAGNI, abstraction, and test coverage principle enforcement