What problem does it solve? Turning a written implementation plan into merged, verified code is error-prone: tasks get built out of order, builders grade their own work, and partially-done tasks get marked complete. This Skill executes a spec-planner plan task by task, with each task built by its own sub-agent in an isolated workspace and merged only after independent correctness and completeness verification. ## Core Features & Use Cases - Sub-agent task execution: Dispatches one implementer sub-agent per task into its own jj workspace or git worktree, walking the plan's dependency graph in parallel waves (default max 4 agents) or sequentially. - Dual verification gates: Every task must pass a semi-formal correctness review and a definition-of-done completeness validation — run by an agent other than the builder, combined into one gate by default or split into two. - Kanban plan board: Tasks move between backlog/, in-progress/, blocked/, and done/ subfolders as their status changes, so progress is ls-legible and interrupted builds resume from folder membership. - Use Case: You have a spec-planner plan folder with six dependency-ordered tasks. Ask the agent to build the plan, and it dispatches implementers in waves, gates each task, merges passing work into an integration point, and parks tasks that fail repeated verification instead of forcing a green build. ## Quick Start Build the plan in .specs/plans/2026-05-22-implement_journal_app/ using spec-builder with default parallel execution.