Use this guide to implement a single work package (WP) in its own workspace.
WP01)Use the slash command in your agent (recommended):
/spec-kitty.implement
Or run the workflow command directly:
spec-kitty agent workflow implement WP01 --agent <agent>
This moves the WP to lane: "doing" and prints the full prompt plus the completion command.
In your terminal:
spec-kitty implement WP01
If the WP depends on another WP, branch from the base work package:
spec-kitty implement WP02 --base WP01
In your terminal:
cd .worktrees/###-feature-WP01
Implement the prompt, run required tests, and commit your changes in the WP worktree.
Use the exact command printed in the prompt. In your terminal:
spec-kitty agent tasks move-task WP01 --to for_review --note "Ready for review: <summary>"
.worktrees/###-feature-WP01/)doing--baseNote: Spec Kitty creates either a git worktree or jujutsu (jj) workspace depending on your project’s VCS. The commands work the same way; the underlying implementation differs. With jj, you get automatic rebasing when dependencies change. See Jujutsu Workflow.
--base WPXX./spec-kitty.implement or spec-kitty agent workflow implement again./spec-kitty.* commands--base for dependent WPs