一键导入
verification-strategy
Thorough verification of completed work before declaring done
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Thorough verification of completed work before declaring done
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 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: