一键导入
review-review
Reviews the review comments on a PR and helps address them. Use when asked to review a review, respond to PR feedback, or address review comments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reviews the review comments on a PR and helps address them. Use when asked to review a review, respond to PR feedback, or address review comments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | review-review |
| description | Reviews the review comments on a PR and helps address them. Use when asked to review a review, respond to PR feedback, or address review comments. |
| argument-hint | ["pr-url-or-number"] |
| allowedTools | ["Bash(ruby ~/.claude/skills/review-review/fetch_review.rb *)","Bash(mkdir -p ~/.claude/local-notes/review-reviews)","Bash(cat ~/.claude/local-notes/review-reviews/* | pbcopy)"] |
Fetch all review comments from a PR, understand them, and help the author respond.
Extract PR info: Extract the PR number and repo from $ARGUMENTS. Supports:
491550https://github.com/shop/world/pull/491550https://app.graphite.com/github/pr/shop/world/491550Fetch review data: Run ruby ~/.claude/skills/review-review/fetch_review.rb $ARGUMENTS to get all comments in one shot
Read the review output: Understand every piece of feedback — both human and bot (marked [BOT])
Read the actual code: For each inline comment, read the referenced file to understand the full context. Don't evaluate feedback based only on the diff hunk — understand the surrounding code
Evaluate each comment: For each piece of feedback, determine:
Write the analysis to ~/.claude/local-notes/review-reviews/pr-$PR_NUMBER.md
Copy to clipboard: cat ~/.claude/local-notes/review-reviews/pr-$PR_NUMBER.md | pbcopy
Tell the user it's been copied and mention the file path
For each comment, write a block like:
---
### `path/to/file.rb:42` — @reviewer_login
> Original comment text (abbreviated if long)
**Assessment**: Valid / Already addressed / Intentional / Not applicable
Explanation of your assessment and suggested action (fix, reply, or ignore).
If suggesting a fix, include the code change.
If suggesting a reply, draft the reply text.
Binks is an AI code reviewer. Its comments are marked [BOT] in the output. Evaluate them with healthy skepticism:
Always draft a reply for every Binks comment. Binks uses feedback to improve, so it needs to hear why you're actioning or dismissing its suggestion. Keep it short — one or two sentences explaining the reasoning (e.g., "job_class is validated on write so this can't happen" or "good catch, adding error handling").
Bottom line: welcome the questioning, but be realistic. Don't recommend changes just because a bot raised a concern — only if the concern survives scrutiny.