一键导入
rabbit-round
Process automated PR review comments systematically. Use this for CodeRabbit, Gemini, GitHub Copilot, Devin, Greptile, and similar bots.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Process automated PR review comments systematically. Use this for CodeRabbit, Gemini, GitHub Copilot, Devin, Greptile, and similar bots.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review and update third-party dependencies. Use this when asked to upgrade packages, survey new minor or major releases for useful features, assess whether a repository can adopt them, or validate whether a release looks suspicious before bumping it.
Create a new implementation plan in the repo's planning area.
Run a security-focused code audit with a generic checklist first, then layer on repo-specific risks.
| name | rabbit-round |
| description | Process automated PR review comments systematically. Use this for CodeRabbit, Gemini, GitHub Copilot, Devin, Greptile, and similar bots. |
Process automated PR review comments systematically. Use this for CodeRabbit, Gemini, GitHub Copilot, Devin, Greptile, and similar bots.
Get context:
PR_NUMBER=$(gh pr view --json number -q '.number')
gh api user --jq '.login'
git rev-parse HEAD
Fetch review comments from the PR:
gh api repos/{owner}/{repo}/pulls/"$PR_NUMBER"/comments --paginate
Filter for known bot accounts. Do not treat human review comments as bot comments.
Triage each bot comment:
Implement accepted suggestions:
Reply inline to each bot comment:
COMMENT_ID="123456789"
gh api -X POST repos/{owner}/{repo}/pulls/"$PR_NUMBER"/comments/"$COMMENT_ID"/replies \
-f body="[response]"
Good response patterns:
{hash}Never resolve human review threads. For bot threads, resolve only after:
Check nit-level comments too. Small ones still matter if they improve clarity or remove avoidable friction.
Commit and push if you made changes:
fix: address review commentsAccept when the suggestion:
Push back when the suggestion: