From a-team
Enforces running verification commands and reading their output before claiming any task is complete. Blocks unsubstantiated success claims.
How this skill is triggered — by the user, by Claude, or both
Slash command
/a-team:verification-before-completionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
YOU CANNOT CLAIM SUCCESS WITHOUT EVIDENCE.
"It should work" is not evidence.
"I believe it works" is not evidence.
Running the command and reading the output IS evidence.
Use this skill before saying ANY of these:
If you have not run the verification command and read its output in this session, you cannot make the claim.
Before claiming completion, state the exact command that proves the claim:
| Claim | Verification Command |
|---|---|
| "Tests pass" | npm test / pytest / go test ./... / cargo test |
| "Build succeeds" | npm run build / go build ./... / cargo build --release |
| "Type checking passes" | npx tsc --noEmit / mypy . |
| "Bug is fixed" | Run the exact steps that reproduced the bug |
| "Feature works" | Run the specific user flow end-to-end |
| "Coverage is 80%+" | npm run test:coverage / pytest --cov |
| "No security issues" | npm audit / cargo audit / bandit -r . |
Run it NOW, in this session. Not "I ran it earlier." Not "it was passing before I made changes."
Fresh means: After the last code change, run the command again.
Do not skim. Do not assume. Read:
Only if the output actually confirms the claim, state completion.
If the output contradicts the claim → fix the issue, then re-verify from Step 2.
After verification succeeds, before reporting done, clean up all diagnostic debris produced during this task:
# Delete temporary logs and stack traces generated in this session
rm -f *.log *.tmp build-output.txt error-dump.txt
rm -f *-stack-trace.txt *-stderr.txt *-debug.txt
# Truncate test output files that were created locally (keep test results, not raw stdout dumps)
What to clean:
*.log, *-error.txt, *-trace.txt)What NOT to clean:
git ls-files — don't delete those)Why this matters: Stack traces and log dumps left in the workspace are silently read by Claude Code in subsequent iterations, inflating context with noise that was only relevant during the error state. Pruning keeps the next agent's context focused.
These thoughts mean you have NOT verified — stop and verify:
Every one of these is a lie told to avoid the discomfort of possibly seeing a failure. Run the command. Read the output. Then report.
When you have verified, state completion like this:
Verification run: `npm test`
Output:
✓ 42 tests passing
0 failing
Coverage: 84%
Task complete. ✓
Never omit the verification output. It is the proof.
LLMs are optimistic by default. They report what should be true, not what is true. A test suite that "should pass" fails 30% of the time after non-trivial changes. The only way to know is to run it.
One unverified claim compounds into three broken downstream tasks. Five minutes of verification saves two hours of debugging later.
npx claudepluginhub rbraga01/a-team --plugin a-teamEnforces fresh verification evidence before any completion claims, preventing false assertions by requiring commands to be run and output confirmed.
Enforces running verification commands (tests, linters, builds) before claiming completion, committing, or creating PRs.
Enforces running verification commands like tests, builds, linters before claiming work complete, bugs fixed, or tests pass. Includes red-green TDD cycles and agent delegation checks.