一键导入
gh-reply-review-comment
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
用 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.
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.
Generate visual hierarchy diagrams of agent system showing levels and delegation. Use for documentation or onboarding.
| name | gh-reply-review-comment |
| description | Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment). |
| category | github |
Reply to PR review comments using the correct GitHub API.
DO NOT confuse these:
gh pr comment# 1. Get comment ID
gh api repos/OWNER/REPO/pulls/PR/comments \
--jq '.[] | {id: .id, path: .path, body: .body}'
# 2. Reply to comment
gh api repos/OWNER/REPO/pulls/PR/comments/COMMENT_ID/replies \
--method POST -f body="✅ Fixed - brief description"
# 3. Verify reply posted
gh api repos/OWNER/REPO/pulls/PR/comments \
--jq '.[] | select(.in_reply_to_id)'
Keep responses SHORT and CONCISE (1 line preferred):
Good examples:
✅ Fixed - Updated conftest.py to use real repository root✅ Fixed - Deleted test file as requested✅ Fixed - Removed markdown linting sectionBad examples:
| Problem | Solution |
|---|---|
| Comment ID invalid | Verify using API call |
| Permission denied | Check gh auth status |
| Reply fails | Verify PR and comment exist |
| Comment not found | Double-check ID format |
After replying:
# Check replies appeared
gh api repos/OWNER/REPO/pulls/PR/comments \
--jq '.[] | select(.in_reply_to_id) | {id: .id, body: .body}'
# Verify CI status
gh pr checks PR
/agents/guides/github-review-comments.md for detailed guide