| name | phase-review |
| description | Run post-execution quality gate - verifies all deliverables before marking a track complete |
| arguments | [{"name":"track_id","description":"Optional track ID to review (defaults to active track)","required":false}] |
| user_invocable | true |
/phase-review
Run the Evaluate Execution step of the Evaluate-Loop workflow. This is the mandatory quality gate before marking any track or phase complete.
When to Use
Run this command:
- After finishing all tasks in a track/phase (Step 4 of the Evaluate-Loop)
- Before marking anything as complete in
tracks.md
- When you want to verify alignment between plan and execution
What It Does
- Reads the current track's
spec.md and plan.md
- Runs the full post-execution evaluation checklist
- Identifies misalignment between plan and execution
- Checks all deliverables are present and functional
- Runs usability check on user-facing changes
- Checks build passes with no console errors
- Generates a Phase Completion Report with PASS/FAIL verdict
Usage
/phase-review
Or with a specific track:
/phase-review TRACK-001-feature-implementation
Evaluation Checklist
The command verifies all checks from the Evaluate-Loop:
1. Deliverables Check
2. Alignment Check (Prevents Scope Drift)
3. Quality Gates
4. Regression Check
5. Testing (when applicable)
6. Documentation
Output Format
The command generates a completion report:
## Phase Completion Report
**Track**: [Track Name]
**Date**: [YYYY-MM-DD]
**Evaluation**: PASS | FAIL
### Deliverables
- [x] Deliverable 1 - src/components/auth/signup-form.tsx
- [x] Deliverable 2 - src/lib/api-client.ts
- [ ] Deliverable 3 - MISSING: src/hooks/useFeature.ts
### Alignment
- [x] All planned tasks executed
- [ ] DRIFT: Design system was rebuilt (not in plan)
### Quality Gates
- [x] Usability check (3 UI changes reviewed)
- [x] No console errors
- [x] Build successful
### Issues Found
1. [Issue description and severity]
### Verdict
PASS — Ready to mark complete
OR
FAIL — Fix required before completion
- Fix 1: [description]
- Fix 2: [description]
What Happens After
If PASS
- Mark track complete in
tracks.md
- Update
conductor/index.md current status
- Commit:
docs: complete [TRACK-NAME] - evaluation passed
If FAIL
- Create fix tasks in
plan.md
- Execute the fixes (Step 3 of the Evaluate-Loop)
- Re-run
/phase-review (loop back to Step 4)
- Repeat until PASS
Related
conductor/workflow.md — Evaluate-Loop Process (primary reference)
CLAUDE.md — Mandatory Agent Rules
/conductor status — See current track status
/conductor implement — Execute track tasks