Skip to main content
ClaudeWave
Skill1.8k estrellas del repoactualizado 7d ago

verification-before-completion

This Claude Code skill enforces evidence-based verification by requiring concrete proof (exit codes, test results, logs) before claiming success on any task. Use it before completing build workflows, approving debug fixes, finalizing reviews, or marking tasks done to prevent unsubstantiated claims and ensure only demonstrable outcomes are reported.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/a5c-ai/babysitter /tmp/verification-before-completion && cp -r /tmp/verification-before-completion/library/methodologies/cc10x/skills/verification-before-completion ~/.claude/skills/verification-before-completion
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

## Rules

- Never claim "should work" without evidence
- Never claim success without exit code 0
- Never claim a bug is fixed without reproduction failure
- Always capture and report exit codes
- Always run the full test suite, not just targeted tests
- Use timeout guards (`timeout 60s`) to prevent hanging

## When to Use

- Before completing any BUILD workflow step
- Before claiming a DEBUG fix is verified
- Before approving a REVIEW result
- Before marking any task as done

## Agents Used

- `integration-verifier` (primary consumer)
- `component-builder` (TDD evidence)
- `bug-investigator` (fix evidence)