con un clic
code-review
Code review for Python changes in NexRL, following project conventions.
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ú
Code review for Python changes in NexRL, following project conventions.
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.
Address GitHub PR review comments. Navigate to correct worktree, make fixes, push updates.
Fix a GitHub issue using git worktree for isolation. Fetches issue, creates worktree, implements fix, then creates PR.
Git commit workflow in a worktree with Python linting, formatting, and testing.
Create a GitHub PR from a worktree branch. Use after committing changes.
Run tests and linting for NexRL Python project.
Basado en la clasificación ocupacional SOC
| name | code-review |
| description | Code review for Python changes in NexRL, following project conventions. |
Review Python code changes following NexRL project conventions and .ai-instructions/code-review/generic.md.
docs/ reflects code changestests/)tests/# Review staged changes
git diff --staged
# Review against base branch
git diff origin/main...HEAD
# Check specific files
python -m pylint <files> --rcfile=.pylintrc -rn -sn
python -m mypy <files> --ignore-missing-imports