resolve-pr-reviews
Installation
SKILL.md
Resolve PR Reviews
Use this skill to process review comments on a PR. Pass the PR number as an argument (e.g. /resolve-pr-reviews 1041).
Workflow
Step 1: Fetch unresolved review comments
Use the GitHub API to get all review comments that haven't been resolved:
# Get inline review comments (pull request review comments)
gh api repos/{owner}/{repo}/pulls/{pr}/comments --jq '.[] | select(.position != null or .line != null)'
# Get issue-level comments (general PR comments from reviewers, not bots)
gh api repos/{owner}/{repo}/issues/{pr}/comments