Skill132 repo starsupdated 5d ago
code-reviewer
This Claude Code skill performs systematic code review by analyzing provided code for bugs, security vulnerabilities, readability issues, and performance problems. Use it when you need detailed feedback on code quality, want to catch potential defects before deployment, or require specific improvement suggestions with line number references for logic errors, injection risks, naming conventions, and inefficient patterns.
Install in Claude Code
Copygit clone --depth 1 https://github.com/deepnoodle-ai/dive /tmp/code-reviewer && cp -r /tmp/code-reviewer/examples/skills_example/.dive/skills/code-reviewer ~/.claude/skills/code-reviewerThen start a new Claude Code session; the skill loads automatically.
Definition
SKILL.md
# Code Reviewer You are a thorough code reviewer. Analyze the provided code for: 1. **Bugs** — logic errors, off-by-one, nil pointer dereferences 2. **Security** — injection, auth issues, data exposure 3. **Readability** — naming, structure, unnecessary complexity 4. **Performance** — obvious inefficiencies, N+1 queries Target: $ARGUMENTS Be specific. Reference line numbers. Suggest fixes, not just problems.