Skip to main content
ClaudeWave
Skill1.3k repo starsupdated today

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.

Install in Claude Code
Copy
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-management
Then start a new Claude Code session; the skill loads automatically.

SKILL.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