一键导入
git-review-pr-comments
Triage PR review comments: fix, discuss, or decline with reason - every thread answered
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Triage PR review comments: fix, discuss, or decline with reason - every thread answered
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Verify, review, and push pending work as one milestone commit
Drive the current branch's PR to merge-ready: CI green and every review comment handled, ending with an outcome label
After owner accept: guard-checked squash-merge of the current branch's PR, base sync and branch cleanup
Open a pull request for the current branch against its target, using the repo template
Cut a release: version, changelog, tag, and release object — policy-driven across trunk/gitflow and tag-only/full
Audit documentation claims against the code; report drift vs violation
| name | git-review-pr-comments |
| description | Triage PR review comments: fix, discuss, or decline with reason - every thread answered |
| argument-hint | [pr number] |
Drain reviewer feedback: every thread ends with a fix commit or a reasoned reply. Silence is never a response.
gh pr list --head <branch> --state open --json number --jq '.[0].number'.reviewThreads(first: 100) { nodes { id isResolved comments(first: 1) { nodes { path line body author { login } } } } } - keep isResolved == false (already-resolved threads were handled on a prior run; skipping them is what makes re-running safe); plus gh pr view <pr> --json reviews,comments for conversation-level notes.dev-context-engineering). Apply fixes grouped into logical commits via git-commit-push (gates run before push).resolveReviewThread mutation by thread id) - the resolved flag is the only state that survives a re-run; a reply without resolve re-appears next run. Reply content: the commit reference for fixes, the reasoning for discuss/decline. Match the reviewer's tone; keep replies short.git-finalize-pr; merging - git-merge-pr.