← Back to list

gh-fix-pr-feedback
by mvillmow
Training framework written in Mojo
⭐ 11🍴 4📅 Jan 24, 2026
SKILL.md
name: gh-fix-pr-feedback description: "Address PR review feedback by making changes and replying to comments. Use when a PR has open review comments needing responses." category: github agent: implementation-engineer
Fix PR Review Feedback
Address PR review comments by implementing fixes and responding to each comment.
When to Use
- PR has open review comments requiring responses
- Ready to implement reviewer's requested changes
- Need to notify reviewers of fixes
- PR is blocked on feedback
Quick Reference
# 1. Get all review comments
gh api repos/OWNER/REPO/pulls/PR/comments --jq '.[] | {id: .id, path: .path, body: .body}'
# 2. Make fixes to code
# [edit files, test, format]
# 3. Commit changes
git add . && git commit -m "fix: address PR review feedback"
# 4. Reply to EACH comment
gh api repos/OWNER/REPO/pulls/PR/comments/COMMENT_ID/replies \
--method POST -f body="✅ Fixed - [brief description]"
# 5. Push and verify
git push
gh pr checks PR
Workflow
- Fetch review comments: List all comments requiring response
- Analyze feedback: Understand all requested changes
- Make changes: Edit code to address each comment
- Run tests: Verify fixes pass locally
- Commit changes: Create single focused commit
- Reply to comments: Reply to EACH comment individually (critical!)
- Push and verify: Push changes and check CI status
Reply Format
Keep responses SHORT and CONCISE (1 line preferred):
✅ Fixed - Updated conftest.py to use real repository root✅ Fixed - Removed duplicate test file✅ Fixed - Added error handling for edge case
Critical: Two Types of Comments
PR-level comments (general timeline):
gh pr comment <pr> --body "Response"
Review comment replies (inline code feedback):
gh api repos/OWNER/REPO/pulls/PR/comments/COMMENT_ID/replies \
--method POST -f body="✅ Fixed - description"
NEVER confuse these - use the correct API for review comments.
Error Handling
| Problem | Solution |
|---|---|
| Comment ID invalid | Verify ID using API |
| Auth failure | Run gh auth status |
| Reply not appearing | Check API endpoint syntax |
| CI fails after push | Review logs and fix issues |
Verification
After addressing feedback:
- All review comments have replies
- Changes committed and pushed
- CI checks passing
- No new issues introduced
References
- See CLAUDE.md for complete PR workflow
- See
/agents/guides/github-review-comments.mdfor detailed guide
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon