Agent skill
pr-fix
Fix issues identified in PR reviews, addressing blocking and minor concerns. Use after receiving PR review feedback or when PR has requested changes.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/pr-fix
SKILL.md
PR Fix
Purpose
Fix issues identified in PR reviews, addressing both blocking and minor concerns systematically.
When to Use
- After receiving PR review feedback
- When PR has requested changes
- To address review comments before merge
Task-Specific Rules
Based on files changed in the PR, load appropriate rules before fixing:
| Files Changed | Rules to Load |
|---|---|
packages/react/src/components/ |
components.md, testing.md, storybook.md |
packages/react/src/hooks/ |
testing.md |
packages/core/, packages/tailwind/ |
tokens.md |
packages/context-engine/ |
context-engine.md |
Always also load: Base rules (workflow, github, linear)
Fix Process
Phase 1: Gather Review Context
-
Fetch PR details:
mcp__github__get_pull_request(owner: "{owner}", repo: "{repo}", pull_number: {pr_number}) -
Get review comments:
mcp__github__get_pull_request_reviews(owner: "{owner}", repo: "{repo}", pull_number: {pr_number}) mcp__github__get_pull_request_comments(owner: "{owner}", repo: "{repo}", pull_number: {pr_number}) -
Get changed files:
mcp__github__get_pull_request_files(owner: "{owner}", repo: "{repo}", pull_number: {pr_number})
Phase 2: Categorize Issues
-
Extract all issues from reviews:
- Inline comments (file:line specific)
- General review comments
- Review verdicts and reasons
-
Categorize by severity:
Category Indicator Priority Blocking ❌ "must", "required", "blocking", REQUEST_CHANGES Fix first Minor ⚠️ "consider", "suggestion", "nit", COMMENT Fix second -
Create fix plan with TodoWrite:
- [ ] Fix: {blocking issue 1} - [ ] Fix: {blocking issue 2} - [ ] Fix: {minor issue 1} - [ ] Verify all fixes -
WAIT for user confirmation before proceeding
Phase 3: Load Context
-
Read each affected file (full content, not just diff)
-
Load relevant rules based on file paths
-
Understand the original intent from PR description
Phase 4: Fix Issues
-
Work through todos one at a time:
- Mark todo as
in_progressbefore starting - Mark as
completedimmediately after finishing
- Mark todo as
-
For each fix:
- Read the specific comment/issue
- Understand what's being asked
- Make the change following loaded rules
- Summarize what was changed
-
After each fix:
- Provide summary with code snippets
- Include file:line references
- WAIT for user confirmation
Phase 5: Verify Fixes
-
Run checks:
bashyarn typecheck yarn lint yarn test -
Review against original comments:
- Does each fix address the feedback?
- Any unintended side effects?
-
Fix any new issues introduced
Output Format
After all fixes are complete:
## ✅ PR Fixes Complete
### PR: #{pr_number} - {title}
### Issues Addressed
| Issue | File | Status |
| ------------------- | ------------------ | -------- |
| {issue description} | `path/file.tsx:42` | ✅ Fixed |
| {issue description} | `path/file.tsx:78` | ✅ Fixed |
### Changes Made
| File | Change |
| ------------------ | ------------- |
| `path/to/file.tsx` | {description} |
### Key Code Changes
{Relevant code snippets with file:line references}
### Verification
- [ ] TypeScript: ✅ No errors
- [ ] Lint: ✅ No warnings
- [ ] Tests: ✅ All passing
- [ ] All review comments addressed: ✅
### Next Steps
{Commit and push, or any remaining items}
Principles to Follow
- Address the actual feedback — Don't assume, read carefully
- Follow loaded rules — Rules files are source of truth
- One fix at a time — Don't batch changes, fix incrementally
- Verify each fix — Ensure it actually addresses the comment
- Don't over-fix — Only change what was requested
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?