with one click
verification-before-completion
// Verification before completion - must run verification commands before claiming done. Evidence before claims.
// Verification before completion - must run verification commands before claiming done. Evidence before claims.
Project knowledge accumulation system - learn from practice, avoid repeating mistakes
File-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use for multi-step tasks requiring >5 tool calls.
Session wrap-up - update handoff + commit + auto-record experience
Systematic debugging - four-phase process, find root cause before fixing
| name | verification-before-completion |
| description | Verification before completion - must run verification commands before claiming done. Evidence before claims. |
Claiming work is complete without verification is dishonesty, not efficiency.
Core principle: Evidence before claims, always.
NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
If you haven't run the verification command in this message, you cannot claim it passes.
BEFORE claiming any status or expressing satisfaction:
1. IDENTIFY: What command proves this claim?
2. RUN: Execute the FULL command (fresh, complete)
3. READ: Full output, check exit code, count failures
4. VERIFY: Does output confirm the claim?
- If NO: State actual status with evidence
- If YES: State claim WITH evidence
5. ONLY THEN: Make the claim
Skip any step = lying, not verifying
| Claim | Requires | Not Sufficient |
|---|---|---|
| Tests pass | Test command output: 0 failures | Previous run, "should pass" |
| Linter clean | Linter output: 0 errors | Partial check, extrapolation |
| Build succeeds | Build command: exit 0 | Linter passing, logs look good |
| Bug fixed | Test original symptom: passes | Code changed, assumed fixed |
| Agent completed | VCS diff shows changes | Agent reports "success" |
| Excuse | Reality |
|---|---|
| "Should work now" | RUN the verification |
| "I'm confident" | Confidence is not evidence |
| "Just this once" | No exceptions |
| "Linter passed" | Linter is not compiler |
| "Agent said success" | Verify independently |
No shortcuts for verification.
Run the command. Read the output. THEN claim the result.
This is non-negotiable.