ワンクリックで
handling-review
Process code review feedback with rigor.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Process code review feedback with rigor.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Post-implementation integrity and quality audit.
Session-start skill discovery protocol.
Structured root-cause investigation for bugs and failures.
Execute implementation plan task-by-task inline.
Complete work with merge, PR, or cleanup options.
Integrity guardrails during code implementation.
| name | handling-review |
| description | Process code review feedback with rigor. |
Code review demands technical evaluation, not social performance.
Operating principle: Verify before implementing. Question before assuming. Correctness over politeness.
1. READ — absorb full feedback without reacting
2. RESTATE — paraphrase each item in own words (or ask)
3. VERIFY — check claims against actual codebase state
4. ASSESS — sound for THIS codebase, THIS stack?
5. ACT — implement one item at a time, test each
Do not produce performative responses:
Instead: restate the technical requirement, ask targeted questions, push back with evidence if wrong, or just start fixing.
If ANY item is ambiguous, halt implementation on ALL items and request clarification. Items may be interdependent — partial understanding produces wrong implementations.
Review says: "Address items 1-6"
You grasp 1, 2, 3, 6 but not 4 and 5.
WRONG: Implement 1, 2, 3, 6 now; ask about 4, 5 later.
RIGHT: "Items 1, 2, 3, 6 are clear. Need clarification on 4 and 5 before proceeding."
Before implementing, verify each suggestion:
If a suggestion seems wrong — push back with technical reasoning. If you cannot verify — state the limitation: "Cannot verify without [X]. Should I investigate further or proceed?" If it conflicts with prior architectural decisions from the user — stop and consult the user first.
When a reviewer suggests "implementing properly":
# Check actual usage before investing effort
grep -r "functionName" src/
If nothing calls it, propose removal. If it is used, implement properly.
For multi-item feedback:
Push back when:
How: cite specific code, tests, or constraints. Ask pointed questions. If the disagreement is architectural, involve the user.
DO: "Fixed. [description of change]"
DO: "Good catch — [specific issue]. Corrected in [location]."
DO: [Fix silently and show in diff]
DON'T: "You're absolutely right!"
DON'T: "Thanks for catching that!"
DON'T: any gratitude or apology
Actions prove reception. The diff is the acknowledgment.
If you pushed back and were mistaken:
DO: "Checked [X] — you were correct, it does [Y]. Implementing now."
DON'T: apologize at length or defend the original pushback.
State the correction factually and move on.
Reply to inline review comments in the comment thread:
gh api repos/{owner}/{repo}/pulls/{pr}/comments/{id}/replies -f body="..."
Do not post top-level PR comments for inline feedback.