with one click
review
Deep code review of recent changes or a specific area
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Deep code review of recent changes or a specific area
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| 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.