원클릭으로
review-correctness
Review Round 3 - Detailed line-by-line code review for bugs, security, tests, and performance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review Round 3 - Detailed line-by-line code review for bugs, security, tests, and performance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Weekly backlog audit — field completeness, staleness tiers, and duplicate detection. Run during grooming to clean up the backlog.
Creates a JIRA Bug with steps to reproduce, expected/actual behavior, and fix criteria. Activates when users ask to create a bug report, file a bug, or report an issue.
Creates a JIRA Epic with scope, success criteria, and child story breakdown. Activates when users ask to create an epic.
Creates a JIRA Story with user story format, acceptance criteria, and technical notes. Activates when users ask to create a story or user story.
Creates a JIRA Task for tech debt, infrastructure, documentation, or spike work. Activates when users ask to create a task, spike, tech debt ticket, or infrastructure work.
Daily briefing — sprint progress, new tickets, and recent comments in one report. Run this to get oriented at the start of the day.
| name | review-correctness |
| description | Review Round 3 - Detailed line-by-line code review for bugs, security, tests, and performance |
| allowed-tools | Bash |
| argument-hint | ["PR-URL-or-number"] |
| disable-model-invocation | true |
Detailed, bottom-up code review. This is the line-by-line pass where you look for bugs, security issues, test gaps, and performance concerns.
Cognitive frame: "Does it work and will we regret this?"
$1 (optional): PR URL, number, or omit to auto-detect current branch's PRgh pr diff ${1:+$1} 2>/dev/null
Go through the diff and review for issues in this exact priority order:
Priority 1: Bugs and Correctness
Priority 2: Security
Priority 3: Error Handling
Priority 4: Test Coverage
Priority 5: Performance
This is mandatory. Every substantive comment must have exactly one label:
Do NOT drip-feed issues. Mention ALL issues you find in this single pass. The "Death of a Thousand Round Trips" anti-pattern (finding one issue, waiting for a fix, then finding another you could have mentioned the first time) is the primary cause of review loops.
### Round 3: Correctness
#### [file_path]
**Line [N]** (Blocker):
[Observation]
[Why it matters]
[Suggested fix with code block if applicable]
**Line [N]** (Warning):
[Observation]
[Why it matters]
[Suggested alternative]
**Line [N]** (Nit):
[Brief observation and suggestion]
---
#### Test Coverage Assessment
- New behavior tested: [Yes / No / Partially]
- Edge cases covered: [Yes / No / List gaps]
- Test quality: [Strong / Adequate / Weak / Missing]
---
#### Issue Summary
| Label | Count |
|-------|-------|
| Blocker | X |
| Warning | X |
| Nit | X |
All issues have been surfaced and labeled in a single pass. Do not hold anything back for a second round.