From core
Fetches unresolved GitHub PR review comments via script, analyzes against current code by file, categorizes as 'should address' or 'can ignore', and summarizes fixes.
npx claudepluginhub clipboardhealth/core-utils --plugin coreThis skill uses the workspace's default tool permissions.
Fetch and analyze unresolved review comments from a GitHub pull request.
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.
Reviews GitHub PR comments by verifying against current code, categorizes issues, replies with reasoning, implements fixes, and resolves threads in one pass.
Share bugs, ideas, or general feedback.
Fetch and analyze unresolved review comments from a GitHub pull request.
Run the script to fetch PR comment data:
bash scripts/unresolvedPrComments.sh [pr-number]
If no PR number is provided, it uses the PR associated with the current branch.
Note: Limited to 100 review threads, 10 comments per thread, and 100 reviews.
Using the JSON output from the script:
Then, for EVERY comment (both unresolvedComments AND nitpickComments):
Group comments by file path and read each file once (not per-comment)
If a file no longer exists, note that the comment may be outdated
Assess each comment against the current code. When multiple comments appear at the same file and line, they are part of the same review thread — read them together as a conversation
Group your assessment as follows:
Should address
Can ignore
Net Summary of how many are worth fixing and what kind of issues they are. Offer to fix, but do NOT start until the user confirms.