ワンクリックで
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()