Review a Pull Request for quality and correctness.
Usage
Provide PR number or URL as argument: /pr-review 123 or /pr-review https://github.com/...
Review Steps
- •
Fetch PR information
bashgh pr view <PR_NUMBER> --json title,body,files,additions,deletions,baseRefName,headRefName
- •
Get changed files
bashgh pr diff <PR_NUMBER>
- •
Checkout PR locally (if needed for deeper analysis)
bashgh pr checkout <PR_NUMBER>
- •
Review checklist
- • PR title and description are clear
- • Changes match the stated purpose
- • No unrelated changes included
- • Code follows project conventions
- • No obvious bugs or security issues
- • Tests are included if applicable
- •
Provide feedback
- •Summarize the changes
- •List any concerns or suggestions
- •Give overall assessment (approve/request changes/comment)
Notes
- •Focus on correctness and maintainability
- •Check for breaking changes
- •Verify backward compatibility handling follows CLAUDE.md guidelines