Kanban State: In Progress
This skill guides agents through the In Progress state (Implementation).
Purpose
In Progress is the execution phase. Code is written, tests are added, and the feature is implemented.
Triggers
- •Pulled from Todo.
- •Returned from Review (requests changes).
Actions in this State
- •Branch: Create a git branch (if applicable) or worktree.
- •Test-First: Write failing tests that match the Acceptance Criteria.
- •Implement: Write the code to pass the tests.
- •Lint/Typecheck: Ensure
pnpm lintandpnpm typecheckpass. - •Refactor: Clean up the code before moving on.
Exit Criteria (Moving to Review)
- • Tests Pass: All new and existing tests pass.
- • Lint Clean: No linting errors.
- • Builds: The project builds successfully.
- • Self-Review: You have reviewed your own diffs.
Allowed Transitions
- •-> Review: When code is ready for feedback.
- •-> Todo: If shifting focus (stop work).
- •-> Backlog: If the scope was misunderstood (abort).