一键导入
review-reply
Unified PR review triage — fetch, normalize, and batch-action bot comments
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Unified PR review triage — fetch, normalize, and batch-action bot comments
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Post-merge workflow — extract lessons and sync knowledge
Pre-work ritual — search knowledge and plan before coding
Pre-push checks — lint and review before pushing
End-of-session — update memory, clean up, report
| name | review-reply |
| description | Unified PR review triage — fetch, normalize, and batch-action bot comments |
Triage PR review comments from all bots for PR $ARGUMENTS.
Fetch all bot comments from the PR using the GitHub API:
gh api repos/mmnto-ai/totem-playground/pulls/$ARGUMENTS/comments --jq '.[] | "\(.id) | \(.user.login) | \(.body[:120])"'
gh api repos/mmnto-ai/totem-playground/issues/$ARGUMENTS/comments --jq '.[] | select(.user.login | test("bot")) | "\(.id) | \(.user.login) | \(.body[:120])"'
Categorize findings by blast radius: Security > Architecture > Convention > Nits.
STOP HERE. Present the categorized findings to the user and wait for them to specify actions.
The user may type individual IDs or bulk actions:
fix all securitydefer all nitsfix <numbers | category>Mark items as will-fix. Make the code changes.
defer <numbers | category> [ticket]Reply on the PR acknowledging the deferral:
@gemini-code-assist.nit <numbers | category>Same as defer but reply text is "Acknowledged — nit / by design."
donePrint summary of actions taken and exit.
NEVER reply individually to GCA bot comments. Always batch ALL GCA responses into a single PR-level comment using the issue comments API endpoint (/issues/{pr}/comments), tagged with @gemini-code-assist.