Help us improve
Share bugs, ideas, or general feedback.
From pr-tools
This skill should be used when the user asks to "address the review", "discuss PR feedback", "plan fixes for the review", "create a plan to fix PR issues", or wants to brainstorm solutions for review findings. Use after a PR review has been posted to fetch the review comment and guide the user through creating an action plan using the brainstorming workflow.
npx claudepluginhub aaronbassett/agent-foundry --plugin pr-toolsHow this skill is triggered — by the user, by Claude, or both
Slash command
/pr-tools:address-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch the most recent Claude Code review comment on a PR and use the brainstorming skill to discuss and create a plan for addressing the identified issues.
Reads open GitHub PR review comments, triages by severity and type, applies code fixes, and drafts replies. Use for addressing PR feedback, fixing review issues, and responding to code reviews.
Fetches GitHub PR review feedback, triages comments as valid/stale/incorrect, implements fixes, verifies with tests, and drafts replies.
Orchestrates PR reviews by validating comments, categorizing findings, fixing or deferring issues, and chaining to implementation for substantial fixes. Handles GitHub/Bitbucket PRs.
Share bugs, ideas, or general feedback.
Fetch the most recent Claude Code review comment on a PR and use the brainstorming skill to discuss and create a plan for addressing the identified issues.
When this skill is invoked, you should:
gh pr view to get title and URL/pr-tools:address-review - Current branch PR/pr-tools:address-review --pr 123 - Specific PR in current repo/pr-tools:address-review --repo user/repo --pr 123 - Any repo PRFirst, get the plugin root and validate prerequisites:
python3 /tmp/cpr.py pr-tools to get PLUGIN_ROOTRun the parse-pr-args.py script with the user's arguments to get:
Use gh pr view "$PR_NUM" --repo "$REPO" --json number,title,state,url to get:
Run "${SCRIPTS}/find-review-comment.sh" "$REPO" "$PR_NUM" to:
Parse the review comment to count issues by severity:
If all counts are 0, the PR has no issues - inform the user and exit.
If issues were found:
After completing the workflow, present findings to the user like:
I've found a Claude Code review for PR #{number}: "{title}"
Review Summary:
- 🔴 {count} critical issues
- 🟡 {count} important improvements
- 🟢 {count} suggestions
Full review: {url}
Let me share the key findings from the review:
[Extract and show main issues from each severity section]
Now, let's discuss:
1. Which of these issues should we address in this PR?
2. Are there any that should be deferred to future PRs or issues?
3. For the issues we'll address, what's the best implementation approach?
The brainstorming skill will then guide the user through creating an approved plan.
If errors occur:
gh auth login