| name | github |
| description | Use this skill when addressing GitHub PR comments. |
| allowed-tools | Bash(*scripts/get-unresolved-comments.sh) |
| compatibility | Requires gh CLI to work |
Addressing review comments
DO NOT resolve review threads. The user will resolve them manually.
When addressing review feedback:
- Address only UNRESOLVED comments
- Be critical, don't just accept the feedback, but ponder upon it
- Make the requested code changes only if they really contribute value
- Add a reply comment explaining what was done
- Leave the thread unresolved for the user to manually resolve
The user maintains control over comment resolution to ensure proper review workflow.
GitHub CLI Commands
Get Unresolved comments on Current PR
Run the script to fetch unresolved
review comments for the current branch's PR:
This script automatically:
- Detects the current repo and branch
- Finds the associated PR
- Fetches only unresolved review comments via GraphQL
- Returns JSON with path, line, body, and outdated status
Other Useful Commands
Get All Review Comments (Resolved and Unresolved)
gh api repos/OWNER/REPO/pulls/PR_NUMBER/comments --jq '.[] | {path, line, body}'
View PR Details
gh pr view PR_NUMBER --json title,body,comments,reviews