com um clique
code-review
Code review for Python changes in NexRL, following project conventions.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Code review for Python changes in NexRL, following project conventions.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
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.
| 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