Skip to main content
ClaudeWave
Skill70 estrellas del repoactualizado 2mo ago

verification-before-completion

The verification-before-completion skill provides a structured checklist for confirming that work has actually been completed before marking tasks done. It covers code changes, file operations, and API implementations with specific verification criteria like test passage, error handling, and authentication functionality. Use this skill whenever about to declare a task finished to avoid false completions and identify what still needs verification.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/ArchieIndian/openclaw-superpowers /tmp/verification-before-completion && cp -r /tmp/verification-before-completion/skills/core/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

# Verification Before Completion

## Checklist

For code changes:
- [ ] Code runs without errors
- [ ] All tests pass
- [ ] Specific requirement is demonstrably met
- [ ] No regressions in existing tests

For files:
- [ ] File exists at expected path
- [ ] Content matches intent

For APIs:
- [ ] Endpoint responds correctly
- [ ] Error cases handled
- [ ] Auth works

## The Rule

If you cannot fully verify a step, do not mark it complete.
Note exactly what remains unverified and why.