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.
From pr-toolsnpx claudepluginhub aaronbassett/agent-foundry --plugin pr-toolsThis skill uses the workspace's default tool permissions.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Executes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Guides idea refinement into designs: explores context, asks questions one-by-one, proposes approaches, presents sections for approval, writes/review specs before coding.
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