Best Claude Code Skills in 2026: Top 20 Ranked (2026)
Claude Code skills transform a general-purpose AI assistant into a specialized tool for your exact workflow. A skill is a set of instructions that Claude Code loads into its context, giving it domain knowledge, project conventions, and repeatable workflows that it would otherwise need to be told every session. These 20 skills represent the highest-utility installations across the Claude Code community, ranked by how much time they save per week. Browse all 150+ skills with the Skill Finder.
Tier 1: Essential Skills (Install These First)
1. Commit Message Generator
Generates conventional commit messages from staged diffs. Reads the actual changes, categorizes the commit type (feat, fix, refactor, docs), and writes a message following your team’s format.
/install commit-message
Why it ranks #1: Every developer commits multiple times per day. Saving 2 minutes per commit adds up to 30+ minutes daily.
2. Test Writer
Generates unit tests for any function or module. Analyzes the code, identifies edge cases, and writes tests using your project’s test framework (Jest, Pytest, Go testing, etc.).
/install test-writer
Why it ranks #2: Test writing is the task developers skip most often. This skill removes the friction entirely.
3. Code Reviewer
Reviews code changes like a senior engineer. Checks for bugs, performance issues, security vulnerabilities, and style violations against your project’s standards.
/install code-reviewer
Why it ranks #3: Catches issues before they reach human reviewers, reducing PR review cycles.
4. Documentation Generator
Creates JSDoc, docstrings, README sections, and API documentation from reading your actual code. Understands types, return values, and side effects.
/install docs-generator
5. Refactoring Assistant
Suggests and executes refactoring patterns: extract function, rename symbol across files, convert class to functional, migrate patterns.
/install refactor
Tier 2: Productivity Multipliers
6. Git Workflow
Manages complex git operations: interactive rebasing, cherry-picking, branch management, conflict resolution with explanations.
/install git-workflow
7. PR Description Writer
Generates pull request descriptions from commit history. Includes a summary of changes, testing notes, and reviewer guidelines.
/install pr-writer
8. Migration Generator
Creates database migration files for schema changes. Supports Prisma, Knex, TypeORM, Django, and Rails migrations.
/install migration-gen
9. API Client Generator
Generates typed API client code from OpenAPI/Swagger specs or from example requests.
/install api-client-gen
10. Environment Setup
Bootstraps development environments: installs dependencies, configures environment variables, sets up databases, and verifies everything works.
/install env-setup
Tier 3: Code Quality Skills
11. Security Scanner
Analyzes code for common vulnerabilities: SQL injection, XSS, insecure deserialization, hardcoded secrets, and dependency issues.
/install security-scan
12. Performance Profiler
Identifies performance bottlenecks: N+1 queries, unnecessary re-renders, memory leaks, inefficient algorithms.
/install perf-profiler
13. Type Strengthener
Replaces any types with proper TypeScript types. Analyzes usage patterns to infer the correct type and adds type guards where needed.
/install type-strengthener
14. Accessibility Checker
Reviews frontend code for WCAG compliance: missing alt text, incorrect ARIA roles, keyboard navigation issues, color contrast.
/install a11y-checker
15. Lint Rule Enforcer
Applies and fixes ESLint, Prettier, or language-specific linter rules across your codebase. Handles auto-fixable violations in bulk.
/install lint-enforcer
Tier 4: Deployment and DevOps Skills
16. Docker Composer
Generates Dockerfiles and docker-compose configurations. Optimizes layer caching, multi-stage builds, and production image size.
/install docker-compose
17. CI/CD Pipeline Writer
Creates GitHub Actions, GitLab CI, or CircleCI pipeline configurations from your project structure and test setup.
/install ci-pipeline
18. Infrastructure as Code
Generates Terraform, Pulumi, or CloudFormation templates for common infrastructure patterns.
/install iac-generator
19. Log Analyzer
Parses application logs, identifies error patterns, and suggests fixes. Works with structured (JSON) and unstructured log formats.
/install log-analyzer
20. Release Manager
Automates version bumping, changelog generation, and release creation based on conventional commits.
/install release-manager
How to Evaluate a Skill
Before installing a skill, check these criteria:
- Relevance: Does it match your tech stack and daily tasks?
- Maintenance: When was the skill last updated? Stale skills may give outdated advice.
- Token cost: Each skill’s instructions consume context tokens. A 2,000-token skill costs ~$0.006 per Sonnet message. Install only skills you use daily.
- Conflicts: Two skills giving contradictory instructions confuse Claude Code. Check for overlapping domains.
# Check installed skills and their token cost
claude config list --skills
Installing and Managing Skills
# Install a skill
/install skill-name
# List installed skills
/skills
# Remove a skill you no longer use
/uninstall skill-name
Skills are stored in your CLAUDE.md or in .claude/skills/ depending on your configuration. See the installation guide for advanced setup, and use the CLAUDE.md generator to manage skill integration with your project configuration.
Try It Yourself
Not sure which skills match your workflow? The Skill Finder lets you search 150+ skills by category, tech stack, and use case. Filter by language, framework, or task type to find exactly what you need.
Common Questions
How many skills should I install at once?
Start with 3-5 skills from Tier 1 and 2. Each skill adds tokens to your system prompt, which increases costs and reduces available context. More than 8-10 active skills becomes counterproductive due to context bloat.Do skills work with all Claude models?
Yes. Skills are instructions loaded into the system prompt, so they work with Haiku, Sonnet, and Opus. However, complex skills (security scanner, refactoring assistant) perform significantly better with Sonnet or Opus due to reasoning requirements.Can I create my own skills?
Absolutely. A skill is a markdown file with structured instructions. See the custom skill tutorial for a step-by-step guide with a working example.Are these skills official or community-made?
A mix of both. Anthropic provides some core skills, while the community contributes the majority. The Skill Finder marks each skill's source so you can assess trustworthiness. Always review a skill's instructions before installing.Which model? → Take the 5-question quiz in our Model Selector.
Related Guides
- How to Install Claude Code Skills
- Building Custom Skills Tutorial
- Commands Reference
- Best Practices Guide
- Skill Finder – browse all 150+ skills