com um clique
verification-strategy
Thorough verification of completed work before declaring done
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Thorough verification of completed work before declaring done
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Building, compiling, and resolving dependency issues across languages
Systematic code review for bugs, security, style, and performance
Working with diverse data formats: binary, text, structured, and custom
Systematic exploration of unknown environments before starting work
Git operations: commits, branches, PRs, and conflict resolution
Writing efficient code that handles large data and tight constraints
| name | verification-strategy |
| description | Thorough verification of completed work before declaring done |
| tags | ["testing","verification","benchmark"] |
| version | 1.0.0 |
How to verify your work is correct before declaring a task complete.
After implementing a solution, go through ALL of these:
ls -la /path/to/expected/output
wc -c /path/to/output # byte count
file /path/to/output # format detection
head -5 /path/to/output # content preview
echo $? (should be 0 for success)If you can find the test script, READ IT:
Tests often check things you didn't expect:
| What you think is right | What the test actually checks |
|---|---|
| Output on stdout | Output in a specific file |
| Human-readable numbers | Exact decimal precision |
| Relative file paths | Absolute file paths |
| "Close enough" answer | Exact match |
| Code that runs | Code under a specific size limit |
Before declaring done, ask yourself: