verification-loop
Installation
SKILL.md
Verification Loop
Overview
Continuous verification ensures every change is validated immediately. Instead of building everything then testing, verify after each small change. This catches errors early and prevents compounding mistakes.
When to Use
- After every code change (edit, write, patch)
- After every dependency addition or update
- After configuration changes
- Before committing any change
The Loop
Change → Verify → If fail: Fix → Verify → If pass: Continue