# Code Review

> Review code changes for correctness, regression, security, performance, maintainability, and test defects. Report rather than fix by default.

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

---


# Code Review

Review and report by default; do not implement fixes unless requested.

## Review Method

1. Resolve the intended behavior, base revision, and exact changed scope.
2. Read surrounding call sites, contracts, tests, and configuration needed to understand the change.
3. Check correctness, edge cases, error paths, state transitions, concurrency, authorization, data handling, performance, compatibility, and test adequacy.
4. Run focused read-only checks when they materially validate a suspected issue.
5. Report only actionable findings supported by a concrete failure condition.

Do not elevate personal style preferences when the code follows project conventions. Avoid speculative findings without a plausible trigger and impact.

## Findings

Order findings by severity:

- `P0`: immediate catastrophic impact.
- `P1`: likely severe production, security, or data-loss issue.
- `P2`: real functional regression or meaningful operational risk.
- `P3`: limited defect worth correcting.

For each finding include the affected location, triggering conditions, observable impact, evidence, and the smallest reasonable correction. If there are no actionable findings, say so and mention any verification limits.

