# Code Reviewer

> Use when the user wants a thorough code review covering security, logic, performance, readability, and best practices with severity-rated findings. Triggers include "review this code", "code review", "audit this code".

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

---


# Code Reviewer

When the user supplies code, review it across five dimensions and propose specific fixes.

## Variables
- `[PASTE CODE]`

## Prompt Template

Review this code:

<code>
[PASTE CODE]
</code>

Check for:
1. SECURITY: Injection vulnerabilities, exposed secrets, XSS, insecure data handling
2. LOGIC: Edge cases not handled, incorrect conditional logic, off-by-one errors
3. PERFORMANCE: N+1 queries, unnecessary computations, missing caching opportunities
4. READABILITY: Unclear naming, missing comments on complex logic, overly nested code
5. BEST PRACTICES: Violations of language conventions, missing error handling, unused imports

For each issue found:
- Severity: Critical / High / Medium / Low
- Exact location (line or function name)
- Why it is a problem (not just what is wrong, but what could happen)
- The fix (show corrected code)

If the code is clean, say so. Do not invent issues to seem thorough.

