Skip to main content
implement is archived (not installed by init): copy it from examples/init-pack/ with its dependency closure, or ask create-workflow to build an equivalent. It is the default coding workflow for a single change: a shared ValidationLoop implements, validates, reviews, and iterates on failures.
implement workflow UI showing implementation, validation, and review stages with an approved verdict

The implement UI streams each stage (implementation, validation, and the reviewer panel's synthesized verdict) as the build → validate → review loop runs.

Inputs

How It Runs

  1. An implementation agent works from the prompt.
  2. A validation agent checks the repo state.
  3. A panel of reviewer agents inspects the result; a moderator synthesizes them into one verdict.
  4. The orchestrator feeds failed validation output and review feedback into the next implementation pass.
  5. The loop stops after validation passes and the synthesized review verdict approves, or after 3 iterations.

Output Shape

implement commits changes directly to the working tree; the run log records the validation result and reviewer feedback per iteration.

Use it when

  • You already know what to build and want a build, validate, review loop enforced.
  • The change is a single, focused unit, not multi-milestone.

Use something else when

Resume & retry

The run is durable: if interrupted, resume with up --resume; finished iterations are not repeated (see the loop’s stop condition above).