一键导入
post-task-verification
Verify implementation completeness against requirements after finishing a task
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Verify implementation completeness against requirements after finishing a task
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up development for one or more issues using git worktrees and tmux.
Create a git commit
Break down a GitHub issue into sub-issues with acceptance criteria, then create and link them.
| name | post-task-verification |
| description | Verify implementation completeness against requirements after finishing a task |
Verify that all requirements are met and no similar patterns were missed.
git branch --show-currentgit log --oneline -5git diff $(git rev-parse --abbrev-ref origin/HEAD | sed 's@origin/@@') --name-onlyFetch the original requirements:
gh issue view {{ARG1}}gh pr view {{ARG1}}Also fetch comments for business requirements:
gh issue view {{ARG1}} --commentsgh pr view {{ARG1}} --commentsLook for comments containing:
Extract and list:
feature, model-update, config-change, api-change, bug-fixReview the implementation:
git diff <base-branch> --name-onlyBased on change type, run relevant verification:
| Change Type | Verification | Search Command |
|---|---|---|
| New client/service | Check all consumers have access | grep -r "<pattern>" . |
| New config field | Check all consumers updated | grep -r "<field_name>" . |
| New dependency | Check all consumers updated | Search import statements |
| New method/function | Check similar components | Compare files with similar structure |
| Generated code | Check regeneration needed | Run the project's code generation commands if applicable |
Identify related components by:
For config changes, verify:
Look for inconsistencies:
# Example: Find places using old pattern but not new
grep -r "<old_pattern>" . | grep -v "<new_pattern>"
Flag any file that:
| Source | Requirement | Status | Evidence |
|---|---|---|---|
| Issue body | Requirement 1 | ✅/❌ | file:line or reason |
| Comment by @user | Expected outcome X | ✅/❌ | file:line or reason |
| Commenter | Expected Outcome | Status | Notes |
|---|---|---|---|
| @business-member | "Feature should do X" | ✅/❌ | Implementation details |
List any findings:
file1, file2Based on change type, confirm:
Config Changes:
API Changes:
Run the project's lint and test commands based on the types of files changed.
Report pass/fail status.