con un clic
review
Deep code review of recent changes or a specific area
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Deep code review of recent changes or a specific area
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.