pr-review-respond

仓库创建 2026年6月25日最近提交 21 天前SkillHot 收录 21 天前
▸ 精选理由

能自动化处理外部或 bot 的 review 评论,显著降低人工跟进成本。

▸ 风险提示

会对 PR 做出修改或回复,需授权 GitHub 操作权限并注意误判带来的变更风险。

这个 Skill 做什么

自动抓取 PR 的已发布 review 线程,评判并自动修复或回复以解决未决 review。

自动抓取 PR 上未解决的 review 线程,逐条判断并要么修正问题要么礼貌回复,最后把线程 resolve 掉。适合在 push 后、合并前且 GitHub 上有 bot 或人类 review 时运行。特点是 agent 可自主裁决并自动执行,区别于只给二次意见的工具。

▸ 展开 SKILL.md 英文原文

Handles GitHub PR reviews that bots (Copilot / qodo / codex-connector) and humans POST on a pull request: fetches the unresolved review threads, adjudicates each finding on its merits (fixes valid correctness/security/regression issues, replies with a reason for nice-to-have/rejected ones), and resolves the threads — autonomously, by the agent's own judgment. Distinct from /pr-codex-ci, which is a LOCAL codex second-opinion (claude proactively invokes codex); this one reacts to reviews already posted on the PR. Use after a push when GitHub bots have reviewed, and before merge (the ruleset blocks merge while any thread is unresolved). Mentions: PR の review 対応 / GitHub review を resolve / Copilot や qodo のコメントに対応 / review thread を片付ける.

开发编程PR审阅回应GitHub自动化线程处理通用
0
Stars
15
Forks
17
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/kanka-jp/coding-agent-playbook-20260707/main/.claude/skills/pr-review-respond/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/kanka-jp/coding-agent-playbook-20260707/main/.claude/skills/pr-review-respond/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# pr-review-respond

GitHub が PR に付ける review(Copilot / qodo / codex-connector 等の bot + 人間)を **agent の判断で全自動**に処理する。

**`/pr-codex-ci` とは別物**: あちらは claude が**ローカルで codex を能動的に呼ぶ** second opinion(findings は claude に返る)。本 skill は **PR に既に post された他者の review** を GitHub から取りに行き、対応して resolve する(reactive、GitHub thread 経由)。

## いつ使うか
- PR に push した後、GitHub bot review(Copilot / qodo 等)が付いたとき
- **merge 前**: ruleset の `required_review_thread_resolution` が未解決 thread で merge をブロックするため([../../../docs/instructor/repo-settings.md](../../../docs/instructor/repo-settings.md))

## 引数
PR 番号。省略時は現在 branch の PR を `gh pr view --json number` で解決する。

## 手順(全 thread が resolved になるまで loop)

1. **owner/repo 解決**: `gh r
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有