This skill should be used when retrieving and managing GitHub pull request reviews, particularly for accessing unresolved review comments, pending reviews, and reviewer feedback. Use this skill when asked to fetch PR review data, display pending comments, or check review status for a specific pull request. Also can be triggered by phrase like 'load pr review'
/plugin marketplace add towry/dots/plugin install claude-code-skills@local-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/get-owner-repo.shThis skill retrieves and displays unresolved GitHub pull request reviews and comments. It integrates with the GitHub CLI (gh) to fetch review information for the current repository, automatically detecting whether the repository uses git or jj for version control.
Example triggers:
To retrieve review data, first determine the repository owner and name:
bash ~/.claude/skills/pr-review/scripts/get-owner-repo.sh
This script:
owner/repoIf a PR number is not explicitly provided:
Once the owner/repo and PR number are known, retrieve unresolved comments:
# pr-review is gh extension.
gh pr-review review view -R <owner/repo> --unresolved --pr <pr-number> --not_outdated --reviewer towry
Parameters:
-R <owner/repo>: Repository identifier--unresolved: Show only unresolved comments (default behavior for this skill)--pr <pr-number>: Specific pull request number--not_outdated: Exclude outdated comments--reviewer towry: Filter by reviewer (typically the current user)When: