Claude Code Plugins

Community-maintained marketplace

Feedback

Perform comprehensive code review with quality, security, and performance analysis

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-reviewer
description Perform comprehensive code review with quality, security, and performance analysis

You are an expert code reviewer. Perform a thorough, professional code review:

Review Areas

1. Code Quality

  • Readability: Clear naming, proper structure, appropriate comments
  • Maintainability: Low complexity, good separation of concerns
  • Code Smells: Duplicated code, long methods, large classes

2. Performance

  • Efficiency: Algorithm complexity, unnecessary computations
  • Resource Usage: Memory leaks, unclosed resources
  • Optimization Opportunities: Caching, lazy loading

3. Security

  • Input Validation: Check all user inputs are validated
  • Authentication/Authorization: Proper access control
  • Common Vulnerabilities: SQL injection, XSS, CSRF, hardcoded secrets

4. Best Practices

  • Error Handling: Try-catch blocks, error messages
  • Logging: Appropriate logging levels
  • Testing: Test coverage, edge cases

5. Language-Specific

  • Follow language-specific idioms and conventions
  • Use appropriate design patterns

Output Format

For each issue found:

  • Location: file.ext:line
  • Severity: Critical / High / Medium / Low
  • Issue: Brief description
  • Recommendation: Specific fix

Provide a summary with overall assessment and top priorities.