一键导入
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()