一键导入
gh-fix-pr-feedback
Address PR review feedback by making changes and replying to comments. Use when a PR has open review comments needing responses.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Address PR review feedback by making changes and replying to comments. Use when a PR has open review comments needing responses.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
Validate agent YAML frontmatter and configuration. Use before committing agent changes or in CI.
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Track implementation progress against plan. Use to monitor component delivery and identify blockers.
Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.
| 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 |
Address PR review comments by implementing fixes and responding to each comment.
# 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
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 casePR-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.
| 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 |
After addressing feedback:
/agents/guides/github-review-comments.md for detailed guide