guide18 min read25d ago

15 Best Claude Skills for Developers in 2026 (Tested & Rated)

We tested 60,000+ Claude skills and ranked the 15 best for developers. Install commands, ratings, and real-world use cases for Superpowers, Frontend Design, Playwright Pro, and more.

15 Best Claude Skills for Developers in 2026 (Tested & Rated)
claude codeskillsdeveloper toolsproductivityAI coding2026

TL;DR: Top 5 Picks

The Claude skills ecosystem has exploded to 60,000+ skills as of March 2026. Here are the five that belong on every developer's machine:

  1. Superpowers (obra) -- Full development lifecycle: brainstorming, TDD, code review, and micro-task planning. The single most impactful skill you can install. 4.9/5
  2. Frontend Design (Anthropic) -- Stops Claude from defaulting to boring Inter/Roboto UIs. Forces bold, intentional design decisions. 4.8/5
  3. Playwright Pro (Anthropic) -- 55+ test templates, flaky test diagnostics, and live browser automation without writing boilerplate. 4.7/5
  4. Trail of Bits Security -- Production-grade static analysis with CodeQL and Semgrep, built by the team that audits the biggest protocols. 4.7/5
  5. MCP Builder (Anthropic) -- The official skill for building MCP servers. Enforces the spec so you do not have to memorize it. 4.6/5


Table of Contents

  1. Why Claude Skills Matter for Developers
  2. How We Ranked These Skills
  3. The 15 Best Claude Skills for Developers
  4. Quick Comparison Table
  5. Starter Pack: 5 Skills to Install First
  6. How to Discover More Skills
  7. Pros and Cons of Using Skills
  8. Frequently Asked Questions

Why Claude Skills Matter for Developers

Claude Code ships as a general-purpose coding agent. It can write Python, debug TypeScript, refactor Go. But "general-purpose" means it treats every task the same way -- and that is the problem.

Ask Claude Code to build a React component without a frontend skill and you get a functional but visually generic card with Inter font and default Tailwind spacing. Ask it to write tests without a TDD skill and you get a test file that may or may not follow red-green-refactor. Ask it to review a PR and it catches surface-level issues but misses blast radius concerns.

Skills fix this. They are structured instruction files (SKILL.md) that give Claude Code specialized playbooks for specific classes of work. Instead of relying on its general training, the agent gets a curated set of rules, templates, constraints, and workflows that encode how experts actually do the work.

The ecosystem has grown from roughly 50 skills in mid-2025 to over 60,000 as of March 2026. That scale creates a new problem: discovery. Most developers install zero skills or grab one popular option and stop there. The difference between a stock Claude Code setup and a properly skilled one is the difference between a junior developer and a senior one with institutional knowledge.

We spent three weeks testing skills across real projects -- a Next.js SaaS app, a Go microservice, a React Native mobile app, and a Python data pipeline -- to find the ones that actually change how you work.


How We Ranked These Skills

Every skill on this list was evaluated against five criteria:

CriteriaWeightWhat We Measured
------------------------------------
Practical Utility30%Does it measurably improve output quality or save time on real tasks?
Community Adoption25%GitHub stars, install count, mentions in developer forums
Maintenance Status20%Last commit date, issue response time, compatibility with latest Claude Code
Skiln.co User Ratings15%Aggregate ratings from verified Skiln.co users
Documentation Quality10%Clear README, examples, and known limitations

We excluded skills that were unmaintained (no commits in 90+ days), had fewer than 100 installs, or only worked with specific IDE wrappers rather than Claude Code directly.


The 15 Best Claude Skills for Developers

1. Superpowers (obra)

Author: Jesse Vincent / Prime Radiant What it does: Superpowers transforms Claude Code from an intelligent autocomplete into a structured senior developer workflow. It chains together brainstorming, micro-task planning, test-driven development, and continuous code review into a single cohesive methodology. When you tell Claude what to build, it activates Socratic brainstorming before writing a single line of code.

Key Features:

  • Socratic Brainstorming -- Reflective design sessions that surface requirements you had not considered before any code is written
  • Micro-Task Planning -- Breaks work into 2-5 minute tasks with clear acceptance criteria, preventing scope drift
  • TDD Enforcement -- Strict red-green-refactor cycle with automated test validation between each task
  • Continuous Code Review -- Between tasks, the review skill checks work against the plan and blocks progress on critical issues

Install:

claude plugin add obra/superpowers

Best for: Any developer who wants structured, senior-level development workflows instead of ad-hoc code generation.

Skiln.co Rating: 4.9/5 Link: skiln.co/skills/superpowers


2. Frontend Design (Anthropic)

Author: Anthropic (Official) What it does: The most-installed Claude skill (277,000+ installs) gives Claude a design philosophy before it touches any code. It explicitly bans overused fonts (Inter, Roboto, Arial, Space Grotesk) and pushes Claude to commit to a specific visual direction -- brutalist, maximalist, retro-futuristic, editorial -- then execute that direction with precision.

Key Features:

  • Design System First -- Forces Claude to define typography pairings, color systems, and spatial composition before generating components
  • Font Blocklist -- Automatically rejects generic font choices, requiring deliberate typographic decisions
  • Motion Design -- Adds purposeful animations that feel intentional rather than decorative
  • Style Commitment -- Locks Claude into a cohesive aesthetic direction for the entire project instead of mixing styles

Install:

claude plugin add anthropic/frontend-design

Best for: Frontend developers tired of every Claude-generated UI looking identical.

Skiln.co Rating: 4.8/5 Link: skiln.co/skills/frontend-design


3. Playwright Pro (Anthropic)

Author: Anthropic (Official) What it does: Gives Claude browser control via Playwright for end-to-end test generation and live application testing. Instead of writing test scripts manually, you describe what you want tested and Claude runs it in a visible browser window. Ships with 55+ templates covering authentication flows, form validation, accessibility checks, and API mocking.

Key Features:

  • 55+ Test Templates -- Pre-built patterns for common test scenarios including auth, payments, file uploads, and real-time features
  • Flaky Test Diagnostics -- Identifies timing issues, race conditions, and selector instability in existing test suites
  • Visual Regression -- Captures and compares screenshots to detect unintended UI changes
  • Live Browser Automation -- Watch Claude interact with your running application in real time during development

Install:

claude plugin add anthropic/playwright-pro

Best for: Teams with thin test coverage who need to bootstrap an E2E suite fast.

Skiln.co Rating: 4.7/5 Link: skiln.co/skills/playwright-pro


4. shadcn/ui Skill

Author: Google Labs / Community What it does: Gives Claude project-aware context about the shadcn/ui component library. When installed, Claude knows how to find, install, compose, and customize components using the correct APIs and patterns for your specific project configuration. Prevents the common mistake of Claude generating raw Tailwind when a shadcn component already exists.

Key Features:

  • Component Discovery -- Automatically maps your installed shadcn components and suggests appropriate ones for new features
  • Pattern Enforcement -- Ensures Claude uses shadcn primitives (Dialog, Sheet, Command) instead of reinventing them with raw HTML
  • Theme Awareness -- Respects your project's CSS variables and design tokens when generating new components
  • Composition Patterns -- Teaches Claude how to combine shadcn blocks (landing pages, dashboards, forms) from the 2,500+ available prebuilt sections

Install:

claude plugin add shadcn/ui-skill

Best for: Any project using shadcn/ui that wants Claude to work with the component library instead of around it.

Skiln.co Rating: 4.6/5 Link: skiln.co/skills/shadcn-ui


5. PR Review Expert

Author: NeoLabHQ What it does: Transforms Claude's PR review capabilities from surface-level linting to structured, senior-engineer-level code review. Evaluates blast radius (what else could this change break?), assesses security implications, checks for test coverage gaps, and categorizes findings by severity with clear remediation steps.

Key Features:

  • Blast Radius Assessment -- Maps which downstream systems, consumers, or tests are affected by each change
  • Security Scanning -- Flags common vulnerability patterns: SQL injection, XSS, insecure deserialization, exposed secrets
  • Test Coverage Analysis -- Identifies untested code paths introduced by the PR and generates missing test cases
  • Severity Classification -- Categorizes issues as critical (blocks merge), major (should fix), minor (nice to have), and nitpick

Install:

claude plugin add neolabhq/pr-review-expert

Best for: Solo developers who need a second pair of eyes and teams who want consistent review quality.

Skiln.co Rating: 4.6/5 Link: skiln.co/skills/pr-review-expert


6. RAG Architect

Author: hamelsmu What it does: Specializes Claude in designing, building, and optimizing Retrieval-Augmented Generation pipelines. Instead of Claude giving you generic RAG advice, this skill encodes production-tested patterns for chunking strategies, embedding model selection, retrieval evaluation, and generation quality assessment.

Key Features:

  • Chunking Strategy Selection -- Evaluates your data type and recommends optimal chunk sizes, overlap, and splitting strategies
  • Retrieval Evaluation -- Built-in metrics for precision@k, recall@k, MRR, and NDCG to measure retrieval quality
  • Embedding Model Comparison -- Benchmarks different embedding models against your specific dataset
  • Pipeline Debugging -- Identifies whether poor RAG output stems from retrieval issues, context window problems, or generation failures

Install:

claude plugin add hamelsmu/rag-architect

Best for: Engineers building production RAG systems who need to move past the "it works in my notebook" stage.

Skiln.co Rating: 4.5/5 Link: skiln.co/skills/rag-architect


7. Database Designer

Author: Jeffallan What it does: Gives Claude deep expertise in database schema design, query optimization, and migration planning. Covers PostgreSQL, MySQL, SQLite, and MongoDB with specific knowledge of each engine's strengths and limitations. Generates ERDs, analyzes index usage, and suggests schema changes with migration scripts.

Key Features:

  • Schema Analysis -- Reviews existing schemas for normalization issues, missing indexes, and constraint gaps
  • ERD Generation -- Creates entity-relationship diagrams in Mermaid format from your existing database
  • Index Optimization -- Analyzes slow queries and recommends composite indexes with EXPLAIN plan validation
  • Migration Planning -- Generates versioned migration scripts with rollback strategies for schema changes

Install:

claude plugin add jeffallan/database-designer

Best for: Backend developers designing new schemas or optimizing existing databases that have grown organically.

Skiln.co Rating: 4.5/5 Link: skiln.co/skills/database-designer


8. Trail of Bits Security

Author: Trail of Bits What it does: Brings professional-grade security audit workflows into Claude Code. This is not a checklist -- it encodes the actual methodology Trail of Bits uses for security audits, including automated static analysis with CodeQL and Semgrep, vulnerability pattern detection, and secure coding enforcement. Trail of Bits is the firm that audits major DeFi protocols, operating systems, and critical infrastructure.

Key Features:

  • CodeQL Integration -- Runs CodeQL queries against your codebase to detect injection, authentication, and data flow vulnerabilities
  • Semgrep Rules -- Custom rule sets for language-specific vulnerability patterns maintained by Trail of Bits researchers
  • Threat Modeling -- Generates STRIDE-based threat models for new features and architectural changes
  • Secure Defaults -- Enforces secure coding patterns: parameterized queries, output encoding, constant-time comparisons

Install:

claude plugin add trailofbits/skills

Best for: Any team shipping code that handles user data, authentication, or financial transactions.

Skiln.co Rating: 4.7/5 Link: skiln.co/skills/trail-of-bits-security


9. Expo Skills (Official)

Author: Expo Team What it does: The official skill collection from the Expo team, fine-tuned for Opus models. Covers the full React Native development lifecycle: building UI, data fetching, navigation, deployment via EAS, and debugging. Auto-activates based on task context -- ask about navigation and the routing skill kicks in; ask about deployment and the EAS skill takes over.

Key Features:

  • Auto-Discovery -- Skills activate automatically when your questions match their descriptions, no slash commands needed
  • SDK 52+ Patterns -- Knows the latest Expo SDK APIs, avoiding deprecated patterns that generic Claude would suggest
  • EAS Build & Submit -- Guides you through Expo Application Services for building, submitting, and updating apps
  • Platform-Specific Handling -- Understands iOS vs Android differences and generates platform-appropriate code

Install:

claude plugin add expo/skills

Best for: React Native developers using Expo who want Claude to know the framework as well as they do.

Skiln.co Rating: 4.6/5 Link: skiln.co/skills/expo-skills


10. MCP Builder (Anthropic)

Author: Anthropic (Official) What it does: The official skill for building Model Context Protocol servers. MCP is the standard for connecting AI agents to external tools and data sources, and this skill ensures every server you build follows the specification correctly. Handles transport layers, tool definitions, resource management, and authentication patterns.

Key Features:

  • Spec Compliance -- Validates your MCP server against the current protocol specification, catching breaking changes before deployment
  • Transport Templates -- Scaffolds stdio, SSE, and HTTP transport layers with proper error handling
  • Tool Definition Patterns -- Generates correctly-typed tool schemas with input validation and error responses
  • Testing Harness -- Creates test suites that verify your MCP server works with Claude Code and other compatible agents

Install:

claude plugin add anthropic/mcp-builder

Best for: Developers building custom MCP servers to connect Claude to internal tools, APIs, or databases.

Skiln.co Rating: 4.6/5 Link: skiln.co/skills/mcp-builder


11. Git Workflow Master

Author: rknall What it does: Upgrades Claude's git capabilities from basic commit/push to advanced operations: interactive rebasing strategies, cherry-pick workflows, bisect automation, worktree management, and complex merge conflict resolution. Encodes git best practices so Claude handles branching strategies (trunk-based, GitFlow, ship/show/ask) correctly.

Key Features:

  • Rebase Strategy -- Guides complex rebases with conflict resolution patterns, preserving commit history integrity
  • Worktree Management -- Sets up and manages git worktrees for parallel development across branches
  • Bisect Automation -- Automates git bisect with test scripts to find the exact commit that introduced a regression
  • Branch Policy Enforcement -- Validates branch names, commit messages, and merge strategies against your team's conventions

Install:

claude plugin add rknall/git-workflow-master

Best for: Developers working on teams with strict git workflows or managing complex multi-branch projects.

Skiln.co Rating: 4.4/5 Link: skiln.co/skills/git-workflow-master


12. Docker Compose Expert

Author: wrsmith108 What it does: Gives Claude production-level Docker and Docker Compose knowledge. Validates Dockerfiles against best practices (multi-stage builds, layer caching, non-root users), generates optimized docker-compose.yml files, and diagnoses container networking and volume issues that trip up even experienced developers.

Key Features:

  • Dockerfile Validation -- Audits Dockerfiles for security issues, bloated layers, and caching inefficiencies
  • Compose Generation -- Creates multi-service docker-compose.yml files with proper dependency ordering, health checks, and restart policies
  • Network Debugging -- Diagnoses container-to-container communication issues, DNS resolution failures, and port conflicts
  • Security Audit -- Flags running as root, exposed secrets in build args, and missing security options

Install:

claude plugin add wrsmith108/docker-compose-expert

Best for: Developers containerizing applications or debugging Docker issues in development and CI environments.

Skiln.co Rating: 4.4/5 Link: skiln.co/skills/docker-compose-expert


13. API Design Patterns

Author: alirezarezvani What it does: Encodes REST and GraphQL API design best practices into Claude's decision-making. Covers resource naming conventions, pagination strategies, error response formats, versioning approaches, and authentication patterns. Prevents the common Claude behavior of generating inconsistent API designs across different endpoints.

Key Features:

  • REST Conventions -- Enforces consistent resource naming, HTTP verb usage, status codes, and HATEOAS links
  • GraphQL Schema Design -- Guides schema-first design with proper type hierarchies, connection patterns, and mutation conventions
  • Pagination Patterns -- Implements cursor-based pagination with proper edge/node structures and page info
  • Error Standardization -- Generates RFC 7807 Problem Details responses with consistent error codes and human-readable messages

Install:

claude plugin add alirezarezvani/api-design-patterns

Best for: Backend developers designing public APIs or internal services that need long-term consistency.

Skiln.co Rating: 4.3/5 Link: skiln.co/skills/api-design-patterns


14. TypeScript Strict Mode

Author: Jeffallan What it does: Forces Claude to write TypeScript with maximum type safety. Enables strict compiler options, eliminates any types, enforces exhaustive switch statements, requires explicit return types on exported functions, and catches common type-level bugs that slip through default TypeScript configurations.

Key Features:

  • Zero-Any Policy -- Rejects any types and provides properly typed alternatives, including generics and branded types
  • Exhaustive Pattern Matching -- Ensures switch statements and discriminated unions handle every possible case
  • Strict Null Checks -- Enforces proper null/undefined handling with optional chaining and type narrowing
  • Export Type Safety -- Requires explicit return types and parameter types on all exported functions and public APIs

Install:

claude plugin add jeffallan/typescript-strict-mode

Best for: TypeScript teams that want to enforce strict type safety without manually reviewing every generated type.

Skiln.co Rating: 4.3/5 Link: skiln.co/skills/typescript-strict-mode


15. Monorepo Navigator

Author: ComposioHQ What it does: Teaches Claude how to work effectively in Turborepo, Nx, and Lerna monorepos. Understands workspace dependency graphs, knows which packages to rebuild when a shared library changes, and generates correct import paths. Prevents the #1 monorepo frustration: Claude modifying the wrong package or breaking workspace boundaries.

Key Features:

  • Dependency Graph Awareness -- Maps workspace dependencies to understand cascading impacts of changes
  • Correct Import Resolution -- Uses workspace protocol imports (workspace:*) and avoids relative path escapes between packages
  • Selective Task Running -- Generates correct turbo run or nx affected commands scoped to changed packages
  • Shared Library Management -- Guides creation and versioning of internal shared packages with proper exports

Install:

claude plugin add composiohq/monorepo-navigator

Best for: Teams managing monorepos with 5+ packages who need Claude to understand workspace boundaries.

Skiln.co Rating: 4.2/5 Link: skiln.co/skills/monorepo-navigator


Quick Comparison Table

#SkillCategoryBest ForRatingInstall Command
-------------------------------------------------------
1SuperpowersWorkflowFull dev lifecycle4.9/5claude plugin add obra/superpowers
2Frontend DesignUI/UXBold, intentional design4.8/5claude plugin add anthropic/frontend-design
3Playwright ProTestingE2E test generation4.7/5claude plugin add anthropic/playwright-pro
4shadcn/ui SkillUI/UXComponent patterns4.6/5claude plugin add shadcn/ui-skill
5PR Review ExpertCode QualityBlast radius reviews4.6/5claude plugin add neolabhq/pr-review-expert
6RAG ArchitectAI/MLRAG pipeline optimization4.5/5claude plugin add hamelsmu/rag-architect
7Database DesignerBackendSchema + query optimization4.5/5claude plugin add jeffallan/database-designer
8Trail of Bits SecuritySecurityStatic analysis + audits4.7/5claude plugin add trailofbits/skills
9Expo SkillsMobileReact Native / Expo4.6/5claude plugin add expo/skills
10MCP BuilderToolingBuilding MCP servers4.6/5claude plugin add anthropic/mcp-builder
11Git Workflow MasterDevOpsAdvanced git operations4.4/5claude plugin add rknall/git-workflow-master
12Docker Compose ExpertDevOpsContainer orchestration4.4/5claude plugin add wrsmith108/docker-compose-expert
13API Design PatternsBackendREST/GraphQL best practices4.3/5claude plugin add alirezarezvani/api-design-patterns
14TypeScript Strict ModeLanguagesType safety enforcement4.3/5claude plugin add jeffallan/typescript-strict-mode
15Monorepo NavigatorToolingWorkspace management4.2/5claude plugin add composiohq/monorepo-navigator

Starter Pack: 5 Skills to Install First

If you are setting up Claude Code for the first time (or resetting your configuration), install these five skills in this order. They cover the widest range of daily development tasks without overlapping:

Day-1 Setup

# 1. Superpowers -- structured development workflow
claude plugin add obra/superpowers

# 2. Frontend Design -- stop generating boring UIs
claude plugin add anthropic/frontend-design

# 3. Trail of Bits Security -- catch vulnerabilities early
claude plugin add trailofbits/skills

# 4. Playwright Pro -- bootstrap your test suite
claude plugin add anthropic/playwright-pro

# 5. TypeScript Strict Mode -- enforce type safety
claude plugin add jeffallan/typescript-strict-mode

Why this combination works:

  • Superpowers handles your workflow (planning, TDD, review)
  • Frontend Design handles your UI quality
  • Trail of Bits handles your security posture
  • Playwright Pro handles your test coverage
  • TypeScript Strict Mode handles your type safety

Together, they transform Claude Code from a code generator into a development partner that plans before coding, designs before building, tests before merging, and secures before shipping.

What to Add Next

Once the starter pack is dialed in, layer on skills specific to your stack:

  • React Native? Add Expo Skills
  • Building APIs? Add API Design Patterns
  • Working in a monorepo? Add Monorepo Navigator
  • Using shadcn/ui? Add the shadcn/ui Skill
  • Running containers? Add Docker Compose Expert

How to Discover More Skills

The Claude skill ecosystem has over 60,000 entries, but quality varies enormously. Here is how to find the good ones:

Browse Skiln.co

skiln.co/skills is the largest curated directory of Claude skills and MCP servers. Every listing includes:

  • Install count and community ratings
  • Last updated date and maintenance status
  • Compatibility tags (Claude Code version, OS support)
  • User reviews from verified developers

Search tips:

  • Filter by category (Frontend, Backend, DevOps, Security, Testing)
  • Sort by "Most Installed" for battle-tested options
  • Sort by "Recently Updated" to find actively maintained skills
  • Use the "Verified" badge to find skills reviewed by the Skiln.co team

Check GitHub Awesome Lists

Several community-maintained lists aggregate quality skills:

Evaluate Before Installing

Before adding any skill to your workflow, check:

  1. Last commit date -- Skip anything untouched for 90+ days
  2. Open issues -- A skill with 50 open issues and no responses is abandoned
  3. Claude Code version compatibility -- Skills built for v1.x may break on v2.x
  4. Scope overlap -- Two skills that both modify how Claude handles testing will conflict

Pros and Cons of Using Skills

Pros

  • Consistent output quality -- Skills enforce patterns that Claude follows every time, eliminating the randomness of prompt-dependent behavior
  • Encoded expertise -- Trail of Bits' security skill encodes years of audit experience; Superpowers encodes a proven development methodology. You get expert workflows without being the expert
  • Time savings -- Skills that auto-activate on relevant tasks (like Expo skills) eliminate the need to write detailed prompts for common operations
  • Team standardization -- Install the same skills across your team's Claude Code instances and everyone gets the same code review quality, the same security checks, the same API design patterns
  • Composability -- Skills stack. Superpowers handles workflow, Frontend Design handles aesthetics, Playwright Pro handles testing -- all working together on the same project

Cons

  • Context window cost -- Every active skill consumes tokens from Claude's context window. Installing 20 skills simultaneously will degrade performance on complex tasks
  • Skill conflicts -- Two skills that both instruct Claude on how to handle testing or code review can produce contradictory guidance and inconsistent output
  • Maintenance burden -- Skills are community-maintained software. They break, fall behind Claude Code updates, and get abandoned. You need to audit your installed skills periodically
  • Over-reliance risk -- A TDD skill does not replace understanding TDD. If you cannot evaluate whether Claude's test-first approach is correct for your specific case, the skill becomes a cargo cult
  • Discovery overhead -- With 60,000+ skills, finding the right one takes research. Low-quality skills with good SEO outrank high-quality skills with bad READMEs

Our recommendation: Start with 3-5 high-quality skills (see the Starter Pack above) and add more only when you hit a specific pain point. Skill bloat is real.


Frequently Asked Questions

How do I install a Claude skill?

Most skills install via the plugin system. Run claude plugin add author/skill-name from your terminal. Alternatively, you can manually create a .claude/skills/ directory in your project root and add SKILL.md files directly. The /skills command inside Claude Code lists all currently available skills.

Do skills work with other AI coding tools?

Many skills use the universal SKILL.md format, which is compatible with Codex, Cursor, Gemini CLI, and other agents that support the same specification. However, some skills use Claude Code-specific features (like subagent dispatching in Superpowers) that only work in Claude Code.

How many skills can I install at once?

There is no hard limit, but there is a practical one. Each active skill adds instructions to Claude's context window. We recommend keeping 5-8 active skills for optimal performance. If you need more, consider activating skills per-project rather than globally.

Do skills affect Claude Code's speed?

Marginally. Skills add to the system prompt, which increases the initial token count. For most skills (under 2,000 tokens each), the impact on response time is negligible. Skills that trigger subagents (like Superpowers) will increase total task time because they add review and planning steps -- but that is by design.

Are official Anthropic skills better than community skills?

Not necessarily. Official skills like Frontend Design and Playwright Pro are well-maintained and heavily tested, but community skills like Superpowers (obra) and Trail of Bits Security are widely considered superior in their respective domains. The best indicator is not who made it, but how actively it is maintained and how many developers use it in production.

Can I write my own skills?

Yes. A skill is just a SKILL.md file with YAML frontmatter (defining when it should activate) and markdown content (the instructions Claude follows). Anthropic's official documentation at code.claude.com/docs/en/skills covers the format. For building MCP servers specifically, install the MCP Builder skill first -- it will guide you through the process.

What is the difference between a skill and an MCP server?

Skills are instruction files that change how Claude thinks and works. MCP servers are external tools that give Claude new capabilities (database access, API calls, file operations). Think of skills as "how to" and MCP servers as "what with." They complement each other: the Database Designer skill tells Claude how to design schemas, while a PostgreSQL MCP server gives it access to actually run queries.

Where can I find the full directory of skills?

skiln.co/skills maintains the most comprehensive directory with ratings, reviews, and install counts. GitHub's awesome-claude-skills lists are also good starting points. The /skills command inside Claude Code shows your currently installed skills.



Last updated: March 21, 2026. Ratings based on Skiln.co community reviews and editorial testing. Have a skill we missed? Submit it to the Skiln.co directory.

Frequently Asked Questions

How do I install a Claude skill?
Most skills install via the plugin system. Run 'claude plugin add author/skill-name' from your terminal. Alternatively, you can manually create a .claude/skills/ directory in your project root and add SKILL.md files directly.
Do skills work with other AI coding tools?
Many skills use the universal SKILL.md format, which is compatible with Codex, Cursor, Gemini CLI, and other agents that support the same specification. However, some skills use Claude Code-specific features that only work in Claude Code.
How many skills can I install at once?
There is no hard limit, but each active skill adds instructions to Claude's context window. We recommend keeping 5-8 active skills for optimal performance.
Do skills affect Claude Code's speed?
Marginally. Skills add to the system prompt, which increases the initial token count. For most skills under 2,000 tokens each, the impact on response time is negligible.
Are official Anthropic skills better than community skills?
Not necessarily. Official skills are well-maintained, but community skills like Superpowers and Trail of Bits Security are widely considered superior in their respective domains. The best indicator is maintenance activity and production usage.
Can I write my own skills?
Yes. A skill is a SKILL.md file with YAML frontmatter defining when it should activate and markdown content with instructions Claude follows. Anthropic's documentation at code.claude.com/docs/en/skills covers the format.
What is the difference between a skill and an MCP server?
Skills are instruction files that change how Claude thinks and works. MCP servers are external tools that give Claude new capabilities like database access or API calls. Skills define 'how to' while MCP servers provide 'what with.'
Where can I find the full directory of skills?
skiln.co/skills maintains the most comprehensive directory with ratings, reviews, and install counts. GitHub's awesome-claude-skills lists are also good starting points.

Stay in the Loop

Join 1,000+ developers. Get the best new Skills & MCPs weekly.

No spam. Unsubscribe anytime.

15 Best Claude Skills for Developers in 2026 (Tested & Rated)