# Verification Before Completion

> Use when: about to claim work is complete, fixed, passing, or ready for commit or PR.

- Skill: `kimtth/verification-before-completion` (Agent Skill)
- Install (CLI): `npx skillmds@latest add kimtth/verification-before-completion`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kimtth/verification-before-completion/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: kimtth (https://skillmd.com/u/kimtth)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kimtth/verification-before-completion

---


Goal: make completion claims only after fresh evidence.

Gate:
1. Identify the exact claim being made.
2. Choose the command or inspection that proves it.
3. Run the full check now, not from memory.
4. Read output and exit code.
5. State the result with evidence or report the actual failure.

Examples:
- tests pass: test command exits 0 with failure count checked
- build succeeds: build command exits 0
- bug fixed: original symptom is reproduced as passing
- lint clean: linter output has no errors
- requirements met: checklist is matched against the request

Red flags:
- "should pass"
- "looks good"
- "probably fixed"
- claiming success after partial output
- relying on an earlier run after new edits

Output:
- command run
- result
- evidence summary
- residual risk or skipped checks

Rules:
- no completion claim without current verification
- do not summarize success before reading output
- if verification cannot run, say why and what risk remains

