All skills
Skillintermediate

/implement-task - Task Implementation with Verification

Execute task implementation steps using automated LLM-as-Judge quality verification, sequential and parallel execution, and Definition of Done (DoD) validation.

Claude Code Knowledge Pack7/10/2026

Overview

/implement-task - Task Implementation with Verification

Execute task implementation steps using automated LLM-as-Judge quality verification, sequential and parallel execution, and Definition of Done (DoD) validation.

  • Purpose: Implement all steps from a planned task specification and verify the results.
  • Output: Working code with passing tests; task moved to .specs/tasks/done/.
/implement-task [task-file] [options]

Arguments

ArgumentFormatDefaultDescription
task-filePath or filenameAuto-detectTask file name or path (e.g., add-validation.feature.md). Auto-selects from in-progress/ or todo/ if only one task exists.
--target-quality--target-quality X.X or X.X,Y.Y4.0 (standard) / 4.5 (critical)Quality threshold. Single value sets both. Two comma-separated values set standard,critical.
--max-iterations--max-iterations N3Maximum fix→verify cycles per step. Set to unlimited for no limit.
--human-in-the-loop--human-in-the-loop [s1,s2,...]NoneSteps after which to pause for review. If no steps are specified, the process pauses after every step.
--skip-judgesflagfalseSkip all judge validation — fast but provides no quality gates
--continueflagNoneResume from the last completed step
--refineflagfalseDetect changed project files and re-verify from the earliest affected step

Context Management

If you ran /plan in the same session, run /clear (or re-open Claude Code) before /implement. The planning phase fills the context window with analysis artifacts; starting fresh gives the implementation agents a clean context for better results.

Workflow Diagram

+--------------------------------------+
| Phase 0: Select Task                 |
|  Task from todo/ or in-progress/     |
|              |                       |
|              v                       |
|  Move to in-progress/                |
+------------------+-------------------+
                   |
                   v
+--------------------------------------+
| Phase 1: Load Task                   |
|  Parse Implementation Steps          |
|  & Verification Requirements         |
+------------------+-------------------+
                   |
                   v
+------------------------------------------------------+
| Phase 2: Execute Steps                               |
|                                                      |
|  For Each Step:                                      |
|                                                      |
|    Developer Agent: Implement Step  <--+             |
|                |                       |             |
|                v                       |             |
|       Verification Level?              |             |
|        |       |       |       |       |             |
|      None   Single   Panel  Per-Item   |             |
|        |    (4.0)   (4.5)  (Parallel)  |             |
|        |       |       |       |       |             |
|        |       +---+---+-------+       |             |
|        |           |                   |             |
|        |           v                   |             |
|        |        PASS? --No--> Fix & Retry            |
|        |           |                                 |
|        |          Yes                                |
|        +-----+-----+                                |
|              |                                       |
|              v                                       |
|       Mark Step DONE                                 |
+----------------------+-------------------------------+
                       |
                       v
+--------------------------------------+
| Phase 3: Final Verification          |
|                                      |
|  Verify Definition of Done  <--+     |
|              |                  |     |
|              v                  |     |
|      All DoD PASS?              |     |
|         /       \\               |     |
|       Yes       No              |     |
|        |         \\              |     |
|        |     Fix Failing Items--+     |
+--------+-----------------------------+
         |
         v
+--------------------------------------+
| Phase 4: Complete                    |
|  Move to done/                       |
|  Final Report                        |
+--------------------------------------+

How It Works

Phase 0: Select Task & Move to In-Progress

  1. Resolves the task file by checking in-progress/ first, then todo/
  2. Moves the task from todo/ to in-progress/
  3. Parses flags and displays resolved configuration

Phase 1: Load and Analyze Task

Reads the task file once and parses the ## Implementation Process section:

  • Lists all steps with dependencies
  • Identifies parallel execution opportunities (Parallel with: annotations)
  • Classifies verification needs from #### Verification sections

Phase 2: Execute Implementation Steps

For each step in dependency order, the orchestrator launches sub-agents and judges:

Pattern A: Simple Step (No Verification)

For simple operations (directory creation, file deletion):

  1. Launch sdd:developer agent to implement the step
  2. Mark the step as complete — no judge verification is needed

Pattern B: Critical Step (Panel of 2 Evaluations)

For critical artifacts requiring high confidence:

  1. Launch the sdd:developer agent to implement the step
  2. Launch 2 sdd:developer evaluation agents in parallel with the step's rubric
  3. Calculate the median score; pass if median ≥ threshold
  4. On failure: iterate through fix→verify cycles until they pass or the maximum number of iterations is reached

Pattern C: Multi-Item Step (Per-Item Evaluations)

For steps creating multiple similar items:

  1. Launch sdd:developer agents in parallel (one per item)
  2. Launch evaluation agents in parallel (one per item)
  3. All items must pass; failing items are re-implemented
  4. Iterate until all pass or the maximum number of iterations is reached

Phase 3: Final Verification

After all steps complete:

  1. Launch sdd:developer agent to verify all Definition of Done items
  2. Each item is checked for evidence (e.g., passing tests, successful builds, existing files, matching patterns)
  3. Failing items are fixed by dedicated developer agents
  4. Re-verify until all items pass

Phase 4: Complete

  1. Move task from in-progress/ to done/
  2. All step titles are marked [DONE], and subtasks are marked [X]
  3. All DoD items are marked [X]
  4. Stage all changed files with Git
  5. Generate a final implementation report

Staging at the end allows you to make manual edits on top and use --refine, so the agent can diff your changes against the staged state.

Verification Levels

LevelWhen UsedConfiguration
NoneSimple operations (mkdir, delete)Skip verification
Single JudgeNon-critical artifacts1 judge, threshold 4.0/5.0
Panel of 2 JudgesCritical artifacts2 judges, median voting, threshold 4.5/5.0
Per-Item JudgesMultiple similar items1 judge per item, parallel execution

Continue Mode (--continue)

Resumes implementation from the last completed step:

  1. Parses task file for [DONE] markers
  2. Launches judge to verify the last incomplete step's artifacts
  3. If PASS: marks done, resumes from next step
  4. If it fails: re-implement the step and iterate

Refine Mode (--refine)

Detects changes to project files (not the task file) and re-verifies from the earliest affected step:

  1. Compares local (unstaged) changes against staged changes by default. To compare against the last commit instead, specify it explicitly (e.g., /implement --refine compare with last commit).
  2. Maps changed files to implementation steps using "Expected Output" and artifact paths
  3. Determines the earliest affected step
  4. Launches a judge for each affected step — if it passes, the user's fix is accepted; if it fails, the implementation agent aligns the rest of the code with the user's changes
  5. All subsequent steps are also re-verified

Human-in-the-Loop (--human-in-the-loop)

After each specified step passes:

  1. Displays step results, artifacts, and judge feedback
  2. Asks: Continue? [Y/n/feedback]
  3. User feedback is incorporated into subsequent iterations
  4. User can pause the workflow at any point

Usage Examples

# Implement a specific task
/implement-task add-validation.feature.md

# Auto-select task from todo/ or in-progress/ (if only 1 task)
/implement-task

# Continue from last completed step
/implement-task add-validation.feature.md --continue

# Refine after manually fixing project files
/implement-task add-validation.feature.md --refine

# Human review after every step
/implement-task add-validation.feature.md --human-in-the-loop

# Human review after specific steps only
/implement-task add-validation.feature.md --human-in-the-loop 2,4,6

# Stricter quality threshold (both standard and critical set to 4.5)
/implement-task critical-api.feature.md --target-quality 4.5

# Different thresholds for standard (3.5) and critical (4.5)
/implement-task add-validation.feature.md --target-quality 3.5,4.5

# Unlimited iterations until quality threshold met
/implement-task add-validation.feature.md --max-iterations unlimited

# Skip judges for fast execution (no quality gates)
/implement-task add-validation.feature.md --skip-judges

# Combined: continue with human review
/implement-task add-validation.feature.md --continue --human-in-the-loop

Task Lifecycle

WhenAction
Start implementationMove task from todo/in-progress/
Final verification PASSMove task from in-progress/done/
Implementation abortedKeep in in-progress/

Best Practices

  • Let the orchestrator work autonomously — it launches sub-agents for both implementation and verification
  • Use --continue if the process is interrupted — it picks up where it left off
  • Use --refine after making manual fixes — it re-verifies affected steps without re-implementing everything
  • For critical features, use --target-quality 4.5 to enforce stricter quality
  • Use --human-in-the-loop for high-risk implementations where you want to review each step
  • Use --skip-judges only for well-understood tasks where speed matters more than verification