iterative-reviewlisted
Install: claude install-skill unifylabs-dev/unify-kit
# Iterative Plan-Aware Review
Review → fix → verify → re-review loop with bounded iteration. Replaces the brittle "run review again after fixes" pattern with explicit stopping rules. Plan-aware: when running inside a phasing run, plan-affecting findings flow back through the handoff Open-Questions channel without mutating the locked master plan.
## Invocation forms
| Form | Meaning |
|------|---------|
| `/iterative-review` | Auto-detect mode from cwd (see `references/modes.md`) |
| `/iterative-review <PR#>` | Code mode against a GitHub PR |
| `/iterative-review <path>` | Doc mode if `.md` / `.txt` / `.rst` / `.mdx`; otherwise code mode |
| `/iterative-review phase <run-id> <N>` | Phase mode — review phase N's deliverables against its spec |
Flags (optional; defaults match recommended behavior):
- `--include-suggestions` — surface Suggestion-severity findings in the loop (default: report-only)
- `--gate-important` — gate every Important finding instead of auto-fixing
- `--cap N` — override the 3-iteration cap (max 5)
- `--no-skip-clean` — disable the skip-if-clean pre-gate (NOT recommended — see Step 4)
## Architecture
```
detect mode → detect verifier → initial review pass
→ skip-if-clean? → EXIT clean
→ loop (max 3):
categorize findings → GATE Critical → AUTO Important
→ dispatch fix subagents → run verifier
→ re-review (delta scope only)
→ fixed-point check → EXIT if stalled
→ no Critical left → EXIT clean
→ cap hit → EXIT wi