원클릭으로
review-implementation
Use when implementation phase is complete -- verifies code matches spec, identifies gaps, and tracks completion state
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when implementation phase is complete -- verifies code matches spec, identifies gaps, and tracks completion state
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when reviewing a spec or task graph for completeness before implementation
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, logging in, or automating browser actions
Use when decomposing a spec, design, or feature description into a task dependency graph with self-evaluating acceptance criteria
Use when doing creative product, feature, component, functionality, or behavior design work
Use when infrastructure or features are built but before declaring done -- verifies work is wired into the system and actively used
| name | review-implementation |
| description | Use when implementation phase is complete -- verifies code matches spec, identifies gaps, and tracks completion state |
Compare code against the plan/spec line by line. Report what's done, what's missing, and what diverged.
Find the source of truth — plan file, issue description, or requirements doc. If none exists, ask before proceeding.
Extract every requirement, acceptance criterion, and edge case from the spec into a flat checklist.
For each checklist item:
Read the actual code. Do not infer from file names or function signatures.
## Implementation Review: [feature/scope]
### Summary
X/Y requirements met | Z gaps | W divergences
### Checklist
- [x] Requirement A — `src/foo.py:42`
- [~] Requirement B — partial, missing error handling
- [ ] Requirement C — not implemented
- [!] Requirement D — diverged: spec says X, code does Y
### Gaps (action needed)
1. [description + suggested fix or issue]
### Intentional Divergences (confirm with user)
1. [what changed and why it might be fine]