Claude Code Plugins

Community-maintained marketplace

Feedback

Run code quality checks. Use after making code changes, before commits, or when asked to check code quality.

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 Run code quality checks. Use after making code changes, before commits, or when asked to check code quality.
allowed-tools Bash, Read, Grep, Glob

Code Quality Checks

Run code quality checks after making code changes.

Commands

# Full check (type checking + linting)
./start.sh check

# Type checking only
./start.sh typecheck

# Linting only
./start.sh lint

# Linting with auto-fix
./start.sh lint-fix

Workflow

  1. Make code changes
  2. Run ./start.sh check
  3. If lint errors can be auto-fixed, run ./start.sh lint-fix
  4. Fix remaining errors manually
  5. Re-run check to verify