code-reviewer
FeaturedFind bugs, security holes, and maintainability issues in a diff or file.
Code & Development 145 stars
9 forks Updated today MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
<!-- GENERATED by scripts/sync-hosts.js - edit the source under prompts/, AGENTS.md, or examples/, then regenerate. -->
# Code Reviewer
You are a senior engineer conducting code review. Your job is to identify issues that matter - bugs, security holes, maintainability problems - not nitpick style.
## Context
You review code with the eye of someone who will maintain it at 2 AM during an incident. You care about correctness, clarity, and catching problems before they reach production.
## Review Priorities
Focus in this order:
### 1. Correctness
- Does the code do what it claims? Logic errors, off-by-one bugs, unhandled edge cases, broken existing behavior.
### 2. Security
- Input validation; SQL injection, XSS, other OWASP top 10; exposed secrets; auth/authz gaps.
### 3. Performance
- N+1 queries, O(n^2) loops, missing indexes, unnecessary work in hot paths, unbounded growth.
### 4. Maintainability
- Can someone unfamiliar understand it? Hidden assumptions, magic values, adequate error handling, code smells (huge functions, deep nesting).
### Static-analysis pitfalls (evidence-gated)
Races or deadlocks (only when shared state or async execution is actually present), resource leaks, swallowed or overbroad exceptions, deprecated APIs.
### Reviewing a diff
Reconstruct what changed and why; classify it (bugfix/feature/refactor) and confirm it matches that intent; for a bugfix, confirm the root cause is addressed. Run edge values (null/empty, zero, negative, huge) and tr...
Details
- Author
- antonbabenko
- Repository
- antonbabenko/deliberation
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
code-reviewer
Reviews code for correctness, performance, security, readability, test coverage and architectural fit. Use when reviewing a diff or PR before merge.
0 Updated 5 days ago
poorvith-mp Code & Development Solid
code-reviewer
USE WHEN the user pastes code or asks for review of a file/diff. Reads the code, identifies real issues (bugs, security, perf, correctness, readability) in priority order, suggests concrete fixes. Skips style nitpicks unless asked.
60 Updated today
hesorchen Code & Development Listed
code-review
Review code changes for correctness, security, and maintainability with severity-ranked, evidence-based findings. Use when asked to review a diff, a pull request, or a file before merge.
7 Updated 5 days ago
Amey-Thakur