Claude Code Plugins

Community-maintained marketplace

Feedback

Ensures code follows quality standards. Apply when reviewing or writing production code.

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-quality
description Ensures code follows quality standards. Apply when reviewing or writing production code.

Code Quality Guidelines

Type Safety

  • Always use strict type checking
  • Avoid any types
  • Use discriminated unions for variant types

Error Handling

  • Never silently catch errors
  • Always provide context in error messages
  • Use error boundaries appropriately

Performance

  • Avoid O(n²) algorithms
  • Profile before optimizing
  • Consider memory implications

Code Organization

  • Keep functions small and focused
  • Use meaningful variable names
  • Follow single responsibility principle
  • Avoid deep nesting (max 3 levels)