بنقرة واحدة
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.