# Critical Issues Only

> PR review discipline - flag only correctness, security, and performance issues. Skip nits.

- Skill: `thrillmade/critical-issues-only` (Agent Skill)
- Install (CLI): `npx skillmds@latest add thrillmade/critical-issues-only`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thrillmade/critical-issues-only/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: thrillmade (https://skillmd.com/u/thrillmade)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/thrillmade/critical-issues-only

---


# Critical issues only

When reviewing a pull request, only surface issues that fall into one of these buckets:

1. **Correctness bugs** — the code does the wrong thing, mishandles a case, or breaks an existing contract.
2. **Security vulnerabilities** — injection, auth bypass, secret exposure, unsafe deserialization, SSRF, etc.
3. **Performance problems** — algorithmic blowups, N+1 queries, memory leaks, blocking calls in hot paths.
4. **Missing or broken test coverage** for new code paths that meaningfully change behavior.

## Do not surface

- Style preferences, formatting, naming preferences.
- Architectural rewrites unless the existing approach is actively broken.
- "You could also..." suggestions that aren't bugs.
- Nitpicks the author can fix in 30 seconds and don't change behavior.

## How to phrase findings

- One concrete issue per comment. No bundling unrelated nits.
- Quote the specific line or block being criticized.
- Say what's wrong, then what to do about it. Skip the throat-clearing.

If the diff has no issues in the four buckets above, post a single short comment confirming that — don't invent problems.

