review-work
Installation
SKILL.md
Review Work
Independently verifies implementation results using only the plan document and the codebase. Receives no information from the execution process.
Core Principle
The reviewer shares no memory with the executor. The plan's stated goals and the current state of the codebase — these two alone are the basis for judgment.
Hard Gates
- Do not receive execution context. No logs from run-plan, no worker output, no diffs, no task completion summaries, no conversation history. The only input is the plan file path.
- Read the plan document directly. Read the plan file from disk — not a summary or a passed-along description.
- Run all tests yourself. Do not trust previous execution results. Run the full test suite and every verification command specified in the plan.
- Verdict is PASS or FAIL — binary at every level. Each success criterion and each task's acceptance criteria are judged met/not-met individually; the verdict is the AND of all of them. No conditional passes, no "almost done", no partial credit.
- The verdict judges only the goal contract. Verdict inputs are: planned files exist, acceptance criteria met, tests pass, no regressions, plan success criteria met. Everything else — placeholder/debug code, commit message mismatches, style — is reported as advisory findings and never flips the verdict. A binary signal is only useful if it is not polluted by cosmetics.
- Save the review document to a file. Review results must be saved as a structured document. Never end with a verbal report alone.
- Do not modify code. This skill is read-only. If issues are found, report them — do not fix them.