| name | review-pr |
| description | Review and address PR comments for the current branch's pull request. Fetches review comments, plans fixes, confirms with the user, then implements and pushes. |
| disable-model-invocation | true |
| allowed-tools | Bash(gh *), Bash(git *), Bash(cargo *), Read, Edit, Write, Grep, Glob |
| argument-hint | [pr-number (optional, auto-detects from branch)] |
Review and Address PR Comments
Step 1: Find the PR
If $ARGUMENTS is provided, use that as the PR number. Otherwise, detect the PR for the current branch:
gh pr list --head $(git branch --show-current) --json number,title,url --jq '.[0]'
If no PR is found, tell the user and stop.
Step 2: Fetch all review comments
Fetch the full set of review comments (not issue-level comments):
gh api repos/{owner}/{repo}/pulls/{number}/comments
Also fetch the review summaries:
gh api repos/{owner}/{repo}/pulls/{number}/reviews
Deduplicate comments that appear multiple times (bots sometimes post the same finding under different IDs). Group by the actual issue being raised, not by comment ID.
Step 3: Triage and plan
For each unique issue raised in the comments:
- Check if already addressed - Read the current code at the referenced location. If a prior commit already fixed it, note it as "already resolved".
- Assess validity - Determine if the comment identifies a real problem or is a false positive. Be honest about false positives but explain why.
- Classify severity - Critical (security/data loss), High (bugs/broken behavior), Medium (correctness/robustness), Low (style/naming/nits).
- Plan the fix - For each valid unresolved issue, describe the specific code change needed.
Present the plan as a table to the user:
| # | Issue | File:Line | Severity | Status | Planned Fix |
|---|
Wait for user confirmation before proceeding to implementation.
Step 4: Implement fixes
After user confirms:
- Implement each fix in the plan.
- Run the project's build/lint/test cycle to verify nothing breaks.
- Commit with a descriptive message referencing the PR review.
- Push to the branch.
Step 5: Reply to comments
For each comment addressed, reply on the PR with a short message stating what was fixed and the commit SHA. For false positives or already-resolved items, reply explaining why no change was needed.
Rules
- Never guess at code you haven't read. Always read the referenced file and line before assessing a comment.
- Group duplicate comments (same issue reported by multiple bots) and reply to all of them.
- Do not make changes beyond what the review comments ask for. Stay focused.
- If a comment suggests a change you disagree with, present your reasoning to the user during the planning phase rather than silently ignoring it.