From fetch-pr-comments
Fetch unresolved PR review comments and feedback on the current branch. Use when you need to address outstanding PR review items or see what feedback needs to be resolved. Optionally filter by a specific reviewer.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fetch-pr-comments:skills/fetch-pr-commentsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetches unresolved review threads and pending reviews from the current branch's pull request.
Fetches unresolved review threads and pending reviews from the current branch's pull request.
Run the script from the repository root:
# Fetch all unresolved comments
./scripts/fetch-pr-comments.sh
# Fetch unresolved comments from a specific user
./scripts/fetch-pr-comments.sh username
Results are saved to /tmp/delete-me/{timestamp}-{repo}-{branch}.json.
Example output structure:
{
"pr_number": 123,
"repo": "owner/repo",
"branch": "feature/example",
"fetched_at": "2025-12-17T12:00:00Z",
"filter_user": null,
"unresolved_threads": [
{
"path": "src/example.ts",
"line": 42,
"comments": [
{
"author": "reviewer",
"body": "Consider using a more descriptive name",
"created_at": "2025-12-16T10:30:00Z"
}
]
}
],
"pending_reviews": [
{
"user": "reviewer",
"state": "CHANGES_REQUESTED",
"body": "A few items to address",
"submitted_at": "2025-12-16T10:00:00Z"
}
]
}
gh) must be installed and authenticatednpx claudepluginhub hvent90/hv-skills --plugin fetch-pr-commentsFetches unresolved GitHub PR review comments via script, analyzes against current code by file, categorizes as 'should address' or 'can ignore', and summarizes fixes.
Fetches unresolved GitHub PR review comments, filtered by author/reviewer role and recency (last-review or date). Use to address feedback, check resolutions, or resume PR work.
Fetches, organizes, and presents GitHub PR comments—issue-level, review bodies, inline—grouped by human/bot with extracted must-fix/optional actionable items.