Verify
Completion gate. Ensure work is actually done before declaring it complete. Verify against the plan, run the full suite, confirm no regressions, check artifacts are updated. Evidence before assertions, always. Use when about to mark a task, plan, or objective complete, or when the user says "done", "complete", "finished", "ready to ship", "is this done".From its SKILL.md
npx -y skills add arendon1/agent-skills --skill verifyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
5.3 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it
verify — completion gate
Ensure work is actually done before declaring it complete. Verify against the plan, run the full suite, confirm no regressions, check artifacts are updated.
Claiming work is complete without verification is dishonesty, not efficiency.
WHEN (self-trigger)
- About to mark a
PLAN.mdtask[x]. - About to declare a plan or objective complete.
- About to commit, merge, or open a PR.
- User says "done", "complete", "finished", "ready to ship", "is this done".
- Invoked by the
buildloop before each task's status flips to[x].
THE IRON LAW
NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
If you haven't run the verification command in this session, you cannot claim it passes. "Should work", "probably passes", "I'm confident" are not evidence.
THE GATE FUNCTION
Before claiming any status or expressing satisfaction:
- IDENTIFY — what command proves this claim?
- RUN — execute the FULL command (fresh, complete). Not a partial check.
- READ — full output, check exit code, count failures.
- VERIFY — does the output confirm the claim?
- If NO → state actual status with evidence. Do not claim done.
- If YES → state the claim WITH evidence (paste the command + result).
- ONLY THEN — make the claim.
Skip any step = lying, not verifying.
COMMON FAILURES
| 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 | original symptom test: passes | code changed, assumed fixed |
| Regression test works | red-green cycle verified | test passes once |
| Task done | every §V touched has its named test passing | "I implemented it" |
| Plan complete | all §T tasks [x] + full suite green | most tasks done |
| Requirements met | line-by-line checklist against PRD/SPEC | tests passing |
RED FLAGS — STOP
- Using "should", "probably", "seems to".
- Expressing satisfaction before verification ("done!", "perfect!", "great!").
- About to commit/push/PR without verification.
- Trusting a subagent's "success" report without re-running the oracle.
- Relying on partial verification.
- Thinking "just this once".
- Tired and wanting work to be over.
- ANY wording implying success without having run verification.
RATIONALIZATION PREVENTION
| 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 the test suite. |
| "It compiled" | Compiling is not passing. |
| "The subagent said it passed" | Re-run the oracle yourself. |
TASK-LEVEL VERIFICATION (invoked by build)
A PLAN.md task is [x] only if ALL hold:
- The verification command (the oracle named in the task's
testcolumn) exits 0, run fresh in this session. - Every
§Vinvariant the task cites has its named test passing. - No
§Vinvariant regressed (the full test suite is green). - The task's acceptance criterion is demonstrably met (paste the evidence).
If any fails, the task stays ~ (wip). Do not flip to [x].
PLAN-LEVEL VERIFICATION (before declaring the plan complete)
Before declaring the plan complete, run ALL of:
- Full test suite — green.
- Lint — clean.
- Build — exit 0.
- Every
§Ttask inPLAN.mdis[x]. - Every
§Vinvariant inSPEC.md/ARD.mdhas a passing test. LESSONS.md§Brows: every bug found during the build has a fix commit (no-in the fix column for bugs that occurred during this build).CONTEXT.mdreflects any new terms coined during the build.- No drift: run the
checkdiscipline (read-only drift detector) against the plan artifacts and the code. ZeroFAILfindings.
Present the evidence to the user as a compact block:
verify: <plan slug>
- tests: PASS (N tests, 0 failures) [paste command]
- lint: PASS (0 errors) [paste command]
- build: PASS (exit 0) [paste command]
- tasks: [x] T1..T5 (5/5)
- invariants: V1..V7 all have passing tests
- lessons: §B clean (no unfixed bugs)
- drift: PASS (check discipline, 0 FAIL)
-> PASS ready to ship
If any line is not PASS, the plan is not complete. State what is missing.
BOUNDARIES
- MUST run the verification command fresh in this session before claiming done.
- MUST paste the command + result as evidence. No evidence = no claim.
- MUST NOT declare a task
[x]if any cited invariant's test fails. - MUST NOT declare a plan complete with any task still
[ ]or~. - MUST NOT trust subagent reports without re-running the oracle.
- MUST run the
checkdiscipline before declaring a plan complete. - MUST use
cavemanfor the evidence block.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.