From github
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github: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
Fetch unresolved review threads from a GitHub pull request, filtered for context efficiency. Avoids flooding the context with resolved threads. Outdated threads are included but marked.
Fetch unresolved review threads from a GitHub pull request, filtered for context efficiency. Avoids flooding the context with resolved threads. Outdated threads are included but marked.
bun ${CLAUDE_PLUGIN_ROOT}/scripts/pr-comments.ts <pr-url> [--role author|reviewer] [--since last-review|<date>]
<pr-url> — GitHub PR URL (e.g., https://github.com/owner/repo/pull/123)--role — author or reviewer (default: auto-detect based on authenticated user)--since — Filter to threads with activity since: last-review or ISO datelast-review: Scopes to threads with activity since the last relevant review.
2025-01-15)# What's unresolved? (auto-detect perspective)
bun ${CLAUDE_PLUGIN_ROOT}/scripts/pr-comments.ts https://github.com/owner/repo/pull/123
# As author: what new feedback since the last review?
bun ${CLAUDE_PLUGIN_ROOT}/scripts/pr-comments.ts https://github.com/owner/repo/pull/123 --role author --since last-review
# As reviewer: are my comments resolved?
bun ${CLAUDE_PLUGIN_ROOT}/scripts/pr-comments.ts https://github.com/owner/repo/pull/123 --role reviewer
Compact markdown grouped by file with line numbers and full comment bodies — enough to act on the feedback directly without additional API calls.
npx claudepluginhub bendrucker/claude --plugin githubFetches unresolved GitHub PR review comments via script, analyzes against current code by file, categorizes as 'should address' or 'can ignore', and summarizes fixes.
Follows up on GitHub/GitLab PR/MR review threads: classifies unresolved/replied/resolved/silent states, checks commit coverage for fixes, drafts replies. Use for checking feedback responses or thread resolutions.
Fetches, organizes, and presents GitHub PR comments—issue-level, review bodies, inline—grouped by human/bot with extracted must-fix/optional actionable items.