원클릭으로
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.