1---2name: final-polish3description: Post-implementation hardening before human review.4---56## Workflow781. Review the diff for scope creep, churn, unjustified tests, missing coverage, regressions, and crossed producer-consumer contracts. Fix or report9 contract units that are `breaking`, `unsafe`, `stale`, or `ambiguous`.102. Run $simplify in a subagent started from a self-contained brief with the exact scope, evaluating each pass before the next. Run $test-writing to11 audit coverage and close approved worthwhile gaps. These passes may edit.123. Run these exact-target, read-only reviews in parallel, each in a subagent started from its own self-contained brief:13 - $code-review as a Standards review.14 - $refactor-opportunities.15 - $ux-ui when the diff affects an interface; inspect the rendered result or report `BLOCKED`. Report unavailable passes instead of simulating them.164. Run $verification as the final fix loop. Fix task-related failures and report each check as `PASS`, `FAIL`, or `BLOCKED`.175. Run a final read-only reviewer gate in a subagent started from a self-contained brief. The main agent owns synthesis and final reporting.1819## Rules2021- Give each subagent its full scope and context in the brief and tell it to treat inherited conversation as background, not as the task.22- Include every report section and state empty, skipped, unavailable, or blocked results.23- Use `READY FOR HUMAN REVIEW` only when no blocker remains.2425## Report template2627```md28# <READY FOR HUMAN REVIEW | NOT READY FOR HUMAN REVIEW>2930## Simplify3132- **Applied:** <items or none>33- **Suggested:** <items or none>3435## Refactor opportunities3637- **<Recommended | Optional>: <problem>** (`<files>`)38 - **Impact:** <impact>3940<or "No worthwhile refactor opportunities found">4142## Code review4344<$code-review output>4546## UI/UX review4748- **<issue>**49 - **User goal:** <goal>50 - **Current:** <behavior>51 - **Fix:** <recommended behavior>52 - **Reason:** <reason>5354<or "No findings", "Skipped", or "Blocked: <reason>">5556## Final reviewer gate5758<use the $code-review finding format, or "Clear">5960## Verification6162- `<check>` — <PASS | FAIL | BLOCKED>63```