verification-gates
Installation
SKILL.md
Verification Gates & Self-Correction Loop
To ensure repository stability, all major changes must pass through a series of "Verification Gates."
The Gates
- Build Gate:
npm run build(or equivalent). - Test Gate:
npm test(or equivalent). - Lint Gate:
npm run lintorruff check.
The Self-Correction Workflow
Whenever a gate fails (e.g., via the gate tool), follow this loop:
- Capture: Inspect the
stderrandstdoutprovided by thegatetool. - Analyze: Explicitly state the root cause of the failure.
- Fix: Apply a patch or modification to address the cause.
- Retry: Re-run the
gatetool with the same command.