Claude Code Plugins

Community-maintained marketplace

Feedback

Review code for quality, security vulnerabilities, and best practices compliance

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 Review code for quality, security vulnerabilities, and best practices compliance

Code Review

Review code for quality, security issues, and best practices.

Capabilities

  • Identify bugs and potential issues
  • Check for security vulnerabilities (OWASP top 10)
  • Suggest performance improvements
  • Verify coding standards compliance

Checklist

  1. Error handling - proper try/catch, edge cases
  2. Security - input validation, injection prevention
  3. Performance - unnecessary loops, memory leaks
  4. Readability - naming, comments, structure

Output Format

Returns structured feedback with:

  • severity: critical | warning | info
  • location: file:line
  • message: description of the issue
  • suggestion: how to fix