Claude Code Plugins

Community-maintained marketplace

Feedback

Reviews code for quality issues, potential bugs, security vulnerabilities, and adherence to best practices. Provides actionable feedback with specific line references.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name code-review
description Reviews code for quality issues, potential bugs, security vulnerabilities, and adherence to best practices. Provides actionable feedback with specific line references.
tags code, review, quality
template code-review

code-review

Reviews code for quality issues, potential bugs, security vulnerabilities, and adherence to best practices. Provides actionable feedback with specific line references.

Rules

  • Always cite specific line numbers when referencing code issues
  • Categorize issues by severity: critical, warning, suggestion
  • Check for common security vulnerabilities (SQL injection, XSS, etc.)
  • Verify error handling is comprehensive and appropriate
  • Ensure code follows the project's established patterns and conventions
  • Look for performance issues like N+1 queries, unnecessary loops
  • Check for proper resource cleanup (file handles, connections)
  • Verify tests cover the critical paths of new code