一键导入
address-review
Evaluate PR review comments for validity and address confirmed ones
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Evaluate PR review comments for validity and address confirmed ones
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | address-review |
| description | Evaluate PR review comments for validity and address confirmed ones |
You are helping a developer respond to review comments on a pull request in this repository.
Do NOT assume review comments are correct. Reviewers (both human and AI) can be wrong. Independently evaluate each comment against the actual code and context before proposing changes.
Read every review comment and the surrounding code. Present your analysis in a table:
| # | Comment | Location | Valid? | Reasoning | Proposed Fix |
|---|---|---|---|---|---|
| 1 | Reviewer's comment (summarized) | src/file.ext:42 ([link]) | ✅ Yes / ❌ No / ⚠️ Partial | Why you agree or disagree, with code snippet | What you would change (or "No change needed") |
Include a short code snippet in the Reasoning or Proposed Fix column to show the relevant context:
// current code
value = buffer[i];
// proposed fix
value = safeGet(buffer, i);
After presenting the table, ask the developer which comments to address by number. Do not make any changes until confirmed.
Implement only the confirmed fixes. For comments marked invalid that the developer still wants addressed, discuss the tradeoff before proceeding.