Feature

Feature Mode

The default mode. Full pipeline from planning to shipping, with adversarial challengers at the plan/spec boundaries and a spec-compliance gate before code review.

Trigger

@buildcrew Add user dashboard
@buildcrew Implement dark mode, 2 iterations

Pipeline

Planner(01) β†’ Plan-Challenger(01.5) β†’ Designer(02) β†’ Spec-Challenger(02.5) β†’ Developer(03)

β†’ [ QA Tester(04) βˆ₯ Browser QA(05) βˆ₯ Spec-Verifier(03.5) ]   ← parallel verification fleet

β†’ Reviewer(06) β†’ Coherence-Auditor(last)
  • Challengers attack the plan/spec before downstream work starts. Verdicts: APPROVED β†’ proceed, REVISE β†’ re-run upstream agent (max 2 cycles), REJECT β†’ escalate to user.
  • Verification fleet (v1.15) β€” qa-tester, browser-qa, and spec-verifier are all read-only and independent, so the orchestrator dispatches them concurrently in a single message. Any failure β†’ one developer fix pass from the merged findings β†’ only the failed members re-run (max 2 cycles). Wall-clock drops to the slowest member instead of the sum.
  • Spec-Verifier checks every acceptance criterion (AC-1 …) against the actual implementation with file:line evidence. Reviewer runs only after PASS. Disputed criteria can be settled by a 3-voter majority (SCOPE: AC-n).
  • Parallel review lenses β€” large or security-sensitive diffs get 4 concurrent reviewer instances (LENS: security/performance/testing/maintainability, report-only); small diffs keep the single auto-fixing reviewer.
  • Design panel (opt-in) β€” @buildcrew {task}, 3 designs generates candidates from distinct angles in parallel; spec-challenger judges and grafts runner-up ideas into the winner.
  • Coherence-Auditor runs once at the very end: parses Handoff Records, cross-checks source code, outputs a Coordination Score 0-100%.
  • Safety rule: only read-only agents parallelize β€” anything that writes (developer, full reviewer) always runs alone.

Quality Gate

After QA + Browser QA + Spec-Verify + Review:

  • All PASS β†’ suggest Ship Mode
  • FAIL β†’ route back to responsible agent (UI β†’ designer, code β†’ developer, spec β†’ planner)
  • Max iterations reached β†’ ship with known issues documented

Output Files

.claude/pipeline/{feature}/
β”œβ”€β”€ 01-plan.md
β”œβ”€β”€ 01.5-plan-critique.md
β”œβ”€β”€ 02-references.md
β”œβ”€β”€ 02-design.md
β”œβ”€β”€ 02.5-spec-critique.md
β”œβ”€β”€ 03-dev-notes.md
β”œβ”€β”€ 04-qa-report.md
β”œβ”€β”€ 05-browser-qa.md
β”œβ”€β”€ 03.5-spec-verification.md
β”œβ”€β”€ 06-review.md
β”œβ”€β”€ 07-ship.md (after Ship Mode)
└── coherence-report.md