verification-before-completion

Enforces running verification commands before claiming work is complete or passing.

Updated Dec 23, 2025
One-click install
npx skills add https://github.com/macintorsten/aurapod --skill verification-before-completion-macintorsten
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: verification-before-completion
Source: https://github.com/macintorsten/aurapod/tree/main/.github/skills/verification-before-completion
Command: npx skills add https://github.com/macintorsten/aurapod --skill verification-before-completion-macintorsten

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI agents and developers often claim work is complete, tests pass, or bugs are fixed without actually running the verification commands, leading to broken code, lost trust, and wasted rework cycles. ## Core Features & Use Cases - Evidence-First Gate: Requires identifying, running, and reading the full output of a verification command before any success claim is made. - Failure Pattern Catalog: Maps common claims (tests pass, build succeeds, bug fixed) to the exact evidence required and what is not sufficient. - Rationalization Prevention: Counters excuses like "should work now" or "linter passed" with concrete verification requirements. - Use Case: Before committing a bug fix, run the test suite, confirm zero failures in the output, and only then state that the fix works with the evidence attached. ## Quick Start Before claiming any task is done, ask the agent to apply verification-before-completion and show the actual command output proving the claim.

Frequently Asked Questions about verification-before-completion

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify work is complete before committing code?▼

Identify the command that proves your claim, run it fresh and in full, read the complete output including exit codes, and only then state the result with that evidence. Never claim success based on previous runs or assumptions.

What counts as sufficient evidence that tests pass?▼

Sufficient evidence is the actual test command output showing zero failures from a fresh run in the current session. Prior runs, partial checks, or statements like "should pass" do not qualify as verification.

Why is linter output not enough to claim a build succeeds?▼

Linters check style and syntax patterns but do not verify compilation. Claiming a build succeeds requires running the actual build command and confirming it exits with code 0.

How do I verify a regression test actually works?▼

Use the red-green cycle: write the test, run it to confirm it passes, revert the fix and confirm the test fails, then restore the fix and confirm it passes again. A test that only passes once proves nothing.

Can I trust an agent's report that a task succeeded?▼

No, agent success reports must be verified independently. Check the version control diff to confirm actual changes were made and run the relevant verification commands yourself before reporting completion.

When should verification-before-completion be applied?▼

Apply it before any success or completion claim, expression of satisfaction, commit, pull request, task handoff, or delegation. The rule covers exact phrases, paraphrases, and any implication that work is correct or done.