원클릭으로
review-implementation
Review code changes made in a session. Use only when user instructs or other skill references.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review code changes made in a session. Use only when user instructs or other skill references.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Standard workflow to implement a plan. Use only when user instructs or other skill references.
Manage interactive or persistent terminal sessions. Must use before running these sessions, like start a dev server, SSH, REPL, ...
Guidelines to help you write code smartly by using workers. Only use
Disciplined diagnosis loop for hard bugs and performance regressions. Use only when user instructs or other skill references.
Workflow to transform vague ideas into validated designs and stepped implementation plans. Use only when user instructs or other skill references.
Review a plan before implementation. Use only when user instructs or other skill references.
| name | review-implementation |
| description | Review code changes made in a session. Use only when user instructs or other skill references. |
Review the implementation against its effect, and optimize for maintainability.
Read code against the plan, verify that all planned file edits are present and compliant. And the code is able to run without obvious bugs. If found anything missing or wrong, stop and report the fact in detail.
If validation passes, according to Code Simplification section, report back with a comprehensive simplification suggestion.
Simplify code by reducing complexity while preserving exact behavior.
Don't change what the code does — only how it expresses it. Before every change, ask:
Simplification means making code more consistent with the codebase, not imposing external preferences.
Before simplifying:
Simplification that breaks project consistency is not simplification — it's churn.
Explicit code is better than compact code when the compact version requires a mental pause to parse.
Watch for over-simplification:
describe(), it() tests -> flatten to top level test()