一键导入
review
Deep code review of recent changes or a specific area
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deep code review of recent changes or a specific area
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | review |
| description | Deep code review of recent changes or a specific area |
| argument-hint | [area|file|commit-range] or empty for uncommitted changes |
| allowed-tools | Bash, Read, Grep, Glob |
Review $ARGUMENTS (or uncommitted changes if empty).
If $ARGUMENTS is empty, review all uncommitted changes:
git diff
git diff --cached
If $ARGUMENTS is a file or glob pattern, review those files.
If $ARGUMENTS looks like a commit range (e.g., v0.9.0..HEAD), review that range:
git diff <range>
For each changed file, evaluate:
Organize findings by severity:
CRITICAL — bugs, data loss risks, security issues HIGH — incorrect behavior, race conditions, missing error handling MEDIUM — performance issues, missing tests, architectural concerns LOW — style, naming, minor improvements GOOD — patterns worth noting as positive examples
Include file paths and line numbers. Quote the problematic code.