一键导入
validate-plan
Validate that plan was correctly implemented, verify all success criteria
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Validate that plan was correctly implemented, verify all success criteria
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review PR comments rigorously, present a justified summary, then post agreed responses individually
Create git commits with user approval, semantic commit format, and no Claude attribution
Implement technical plans from thoughts/shared/plans with verification
Create detailed implementation plans through interactive research and iteration
Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.
Analyze and improve test code quality using Kent Beck's Test Desiderata framework. Use when analyzing test files, reviewing test code, identifying test quality issues, suggesting test improvements, or when asked to evaluate tests against best practices. Applies to unit tests, integration tests, and any automated test code.
| name | validate-plan |
| description | Validate that plan was correctly implemented, verify all success criteria |
| argument-hint | ["plan-file-path"] |
| model | sonnet |
| disable-model-invocation | true |
Validate that an implementation plan was correctly executed by comparing the plan's claims against the actual codebase state.
thoughts/shared/plans/ or ask the userRead the plan completely — identify every phase, checkbox, success criterion, and manual verification item.
Read every file the plan references — source code, test files, config files. Compare what the plan says should exist against what actually exists.
Run automated verification — execute make test (or whatever the plan specifies). Capture full output.
Compare plan claims to reality for each phase:
[x]) match what's actually in the code?Assess test quality — don't just check that tests pass. Read the test code:
Look for regressions — did the implementation break pre-existing methods or behavior? Check methods that aren't part of the plan but exist in modified files.
Evaluate plan quality — if the plan has vague or unmeasurable criteria ("handle edge cases well", "good performance"), flag them as unverifiable rather than inventing interpretations.
## Validation Report: [Plan Name]
### Implementation Status
Phase N: [Name] — [Fully implemented | Deviations found | NOT implemented]
### Automated Verification
[Full test output, pass/fail count]
### Findings
[What matches the plan, what deviates, what's missing, what's broken]
### Recommendations
[What needs fixing before this can be considered complete]