From loopkit
Enforces fresh verification before claiming work is complete. Requires running the verification command in the current turn and reading its output before any success claim.
How this skill is triggered — by the user, by Claude, or both
Slash command
/loopkit:verification-before-completionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Claiming work done without fresh verification is dishonesty, not efficiency. `adversarial-verify` is the *what*; this skill is the *when* — the gate you pass through right before any completion claim.
Claiming work done without fresh verification is dishonesty, not efficiency. adversarial-verify is the what; this skill is the when — the gate you pass through right before any completion claim.
NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
If you have not run the verification command in this message, you cannot claim it passes. Not "should", not "probably", not "based on the diff".
Before writing "done" / "fixed" / "green" / "ready to merge" — even in your own head:
Skip any step = you are lying to the user, not verifying.
| Claim | Requires | Not sufficient |
|---|---|---|
| Tests pass | Fresh test run, exit 0, 0 failures | "should pass", previous run, "logic looks right" |
| Linter clean | Linter output, 0 errors | Partial check, extrapolating from unrelated files |
| Build succeeds | Build command, exit 0 | Linter passing, editor squiggles gone |
| Bug fixed | Reproduce original symptom, watch it not happen | Code changed, "assumed" fixed |
| Regression test works | Red → green cycle verified (revert fix, watch test fail, restore, watch pass) | Test passes once |
| Agent/subagent completed | Read the VCS diff, verify claimed changes exist | Agent's own "success" report |
| Spec satisfied | Line-by-line checklist against the plan | "Tests pass, phase complete" |
| Excuse | Reality |
|---|---|
| "Should work now" | RUN it. |
| "I'm confident" | Confidence ≠ evidence. |
| "Linter passed" | Linter ≠ compiler ≠ tests. |
| "The agent said success" | Read the diff yourself. |
| "Partial check is enough" | Partial proves nothing about the whole. |
| "Different words, so rule doesn't apply" | Spirit over letter. |
Tests
34/34 pass. Then say "all tests pass".Regression tests (real red-green)
Build
Agent delegation
Always, before:
adversarial-verify — the 11 shortcuts agents take to fake "done"; run through the list, then run through this gate.clean-commits — clean commits require verified content.verifier subagent — dispatch it; then verify its report against the diff (per the "Agent delegation" pattern above).Run the command. Read the output. THEN claim the result. Non-negotiable.
npx claudepluginhub archive228/loopkit --plugin loopkitEnforces running verification commands (tests, linters, builds) before claiming completion, committing, or creating PRs.
Enforces running verification commands like tests, linters, and builds before claiming work is complete, fixed, or passing, especially prior to commits or PRs.
Enforces running tests, linters, or builds and confirming output before claiming code complete, fixed, or passing. Requires evidence prior to commits or PRs.