From u
Review PR feedback from reviewers and Copilot, triage each comment (implement / acknowledge / decline), plan changes, and implement approved fixes. Use when you need to act on pull request review feedback.
How this skill is triggered — by the user, by Claude, or both
Slash command
/u:pr-feedbackThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reviewers (humans and/or Copilot) have left feedback on your pull request.
Reviewers (humans and/or Copilot) have left feedback on your pull request. Your job is to review it, decide what is correct and worth implementing, and act on it.
Run the pr-comments fetch script to get all PR comments, reviews, and review threads.
!${CLAUDE_PLUGIN_ROOT}/skills/pr-comments/scripts/fetch-pr-comments.sh $ARGUMENTS 2>&1
Go through every piece of feedback (review comments, inline threads, conversation comments) and categorise each item into one of these buckets:
| Bucket | Criteria | Action |
|---|---|---|
| Implement | Correct, improves the code, and in scope | Will fix |
| Acknowledge | Valid observation but out of scope or a deliberate choice | Note why — may reply to reviewer |
| Decline | Incorrect, based on a misunderstanding, or would make things worse | Note why — may reply to reviewer |
Present the triage as a table so the user can review your reasoning before you start work.
For all items in the Implement bucket:
Present the plan to the user and wait for approval before proceeding.
After user approval:
After implementation:
npx claudepluginhub tgvashworth/agent-plugins --plugin uInteractively responds to PR review feedback: fetches comments, verifies findings, asks for user approval, makes changes, and posts replies. Use when addressing GitHub pull request reviews.
Fetches GitHub PR review feedback, triages comments as valid/stale/incorrect, implements fixes, verifies with tests, and drafts replies.
Reads open GitHub PR review comments, triages by severity, applies code fixes, and drafts replies. Use when addressing PR feedback or code review.