verify
Installation
SKILL.md
verify
Turn "it looks done" into a verdict backed by evidence.
Most verification passes fail in one of two directions: they trust the implementation and miss real defects, or they generate a pile of plausible-sounding problems that waste an hour. This skill is built against both.
All paths below are relative to this skill's directory.
Three laws
- No verdict without an executed command. Every claim about the state of the code cites a command, its exit code, and a line of its output. A gate that could not run is reported as not run, never as passing.
- No finding without a refutation attempt. Every candidate defect faces an independent skeptic whose job is to kill it. Survivors get reported; the rest are counted, not shown.
- No repair that only silences the checker. Skipping a test, adding
@ts-ignore, widening toany, swallowing an error, editing CI, or rewriting the plan to match the code — the loop refuses these and escalates instead. Enforced deterministically byscripts/forbidden-repairs.mjs, not by good intentions.
Violating the letter of a law is violating its spirit.