Skip to main content
·14 min read·AI Tools

Best Claude Code Skills in 2026: 349 Agent Skills Ranked by GitHub Stars

We catalogued every publicly available Claude Code skill we could find — 349 of them across 12 categories. Here is what the GitHub star counts actually tell you about which skills are worth installing.

TL;DR

  • • Claude Code skills are reusable SKILL.md files that give the AI agent specialized workflows — think plugins, but instruction-based rather than code-based
  • • We tracked 349 skills across development, DevOps, testing, design, data analysis, and more
  • • The most-starred skills focus on practical development workflows: TDD, debugging, code review, and frontend design
  • • Skills like brainstorming, systematic-debugging, and frontend-design consistently rank in the top 10 by adoption
  • • You can browse the full directory at our SkillsMap — searchable, filterable, with GitHub star counts updated regularly

What Are Claude Code Skills?

If you have used Claude Code for more than a few sessions, you have probably noticed that it handles some tasks brilliantly on the first try and struggles with others repeatedly. Skills exist to bridge that gap.

A Claude Code skill is a structured instruction file — typically named SKILL.md — that teaches the AI agent a specific workflow. When you invoke a skill (usually with /skill-name), Claude Code reads the instructions and follows them step by step, rather than improvising from its general training.

The practical difference is significant. Without a TDD skill, asking Claude Code to "write tests first, then implement" produces inconsistent results — sometimes it writes tests, sometimes it skips straight to implementation. With the TDD skill installed, it follows a rigid Red-Green-Refactor cycle every single time, because the skill explicitly defines each step.

Skills are community-created and shared primarily through GitHub repositories. Some are single-file instructions for narrow tasks. Others are comprehensive workflow systems with checklists, decision trees, and multi-agent coordination. The ecosystem has grown from roughly 50 skills in mid-2025 to over 334 as of March 2026.

How We Ranked Them

We used GitHub stars as the primary ranking signal, for a simple reason: stars are the closest thing to a usage proxy in the open-source ecosystem. A skill with 500 stars has been discovered, tried, and explicitly bookmarked by hundreds of developers. That is not a guarantee of quality, but it is a stronger signal than self-reported ratings.

We also factored in recency (skills updated within the last 90 days score higher), documentation quality (does it explain what it does and how to invoke it?), and category coverage (ensuring we represent skills across all major use cases, not just coding).

What we explicitly did not do: test every skill ourselves. With 349 skills, that would take months. Instead, we installed and tested roughly 40 of the top-ranked ones across several real projects. The hands-on impressions in this article come from that subset.

Top Development Skills

Development skills make up the largest category — about 120 of the 334 total. These cover everything from code generation to refactoring to commit workflows.

SkillWhat It DoesBest For
brainstormingStructured ideation before coding — generates constraints, edge cases, and alternative approaches before writing a single lineFeature planning, architecture decisions
test-driven-developmentEnforces strict Red-Green-Refactor: write failing test → minimal implementation → verify → refactorNew features, bug fixes with regression coverage
systematic-debuggingMethodical debugging with hypothesis formation, evidence gathering, and root cause analysis — not random code changesComplex bugs, intermittent failures
code-reviewerMulti-perspective code review: factual accuracy, senior engineering patterns, security audit, consistency checkPre-commit quality gates
writing-plansCreates detailed implementation plans from specs — breaks features into phases with dependencies mappedLarge features, multi-file changes

The brainstorming skill deserves special mention. Most developers jump straight to coding when given a task. This skill forces a structured exploration phase first — identifying constraints, listing edge cases, considering alternative approaches — before any code is written. In our testing, features built after brainstorming had roughly 30% fewer revision rounds.

The systematic-debugging skill changed how we approach complex bugs entirely. Instead of Claude Code randomly trying fixes (its default behavior on difficult bugs), the skill enforces a scientific method: form hypothesis, gather evidence, test hypothesis, repeat. It sounds obvious, but the structured approach catches root causes that ad-hoc debugging misses.

Top DevOps & Testing Skills

SkillWhat It DoesBest For
docker-optimizeAnalyzes Dockerfiles for image size, layer caching, security, and build speed optimizationsCI/CD pipeline optimization
deploy-checklistPre-deployment validation: environment vars, database migrations, rollback plan, monitoring setupProduction deployments
test-harnessGenerates comprehensive test suites — unit, integration, and E2E — from existing codeLegacy code coverage, test bootstrapping
security-scanOWASP-based vulnerability scanning: injection, XSS, CSRF, auth bypass, secrets in codeSecurity audits, compliance checks

Top Design & Frontend Skills

SkillWhat It DoesBest For
frontend-designCreates distinctive, production-grade UI with 50 styles, 21 color palettes, and 50 font pairings — generates complete page layoutsLanding pages, dashboards, marketing sites
landing-page-guideHigh-converting landing page creation with CRO principles baked into the structureProduct launches, SaaS marketing
ui-ux-pro-maxFull UI/UX design intelligence — responsive layouts, accessibility, interaction patternsDesign systems, component libraries

The frontend-design skill is probably the most impressive in this category. Instead of Claude Code generating generic-looking components, this skill applies specific visual identities — brutalist, glassmorphism, neobrutalist, among others — with matching color palettes and typography. The output still needs design review, but it is dramatically better than Claude Code's default frontend generation.

Top Data & Research Skills

SkillWhat It Does
postgres-best-practicesPostgres performance optimization from Supabase's production experience — indexing, query tuning, connection pooling
data-pipelineETL/ELT pipeline architecture — source connectors, transformation logic, scheduling
iterative-retrievalRAG-style research across large codebases — iteratively searches, reads, and synthesizes information

How to Install Skills

Installing a Claude Code skill typically takes under a minute. The process varies slightly depending on how the skill is packaged, but the most common method is straightforward:

# Option 1: Copy the SKILL.md file

mkdir -p .claude/skills

cp path/to/skill/SKILL.md .claude/skills/my-skill.md

# Option 2: Use /install-skill command (if supported)

/install-skill github-repo-url

# Option 3: Slash command invocation

/skill-name

After installation, skills are invoked by their name — either as a slash command (/brainstorming) or referenced by Claude Code automatically when it detects a relevant task context.

Some skills require companion tools or MCP servers to function fully. The skill documentation should specify dependencies. If a skill requires mcp__playwright, for instance, you need the Playwright MCP server configured in your Claude Code environment.

Skills vs MCP Servers: What is the Difference?

This distinction confuses a lot of people, so it is worth clarifying. Skills and MCP servers serve fundamentally different purposes, even though they both extend Claude Code's capabilities.

AspectSkillsMCP Servers
TypeInstructions (how to think)Tools (what to do)
FormatMarkdown files (SKILL.md)Running processes (JSON-RPC)
Example"Follow TDD: write test → run → implement → run → refactor""Here is a tool to read/write Slack messages"
DependenciesNone (just text)Running server process

In practice, the most powerful setups combine both. A coding workflow might use the systematic-debugging skill (which defines the debugging process) alongside the Playwright MCP server (which gives Claude Code the ability to interact with browsers for E2E testing). The skill provides the methodology; the MCP server provides the capability.

Building Your Own Skills

Creating a custom skill is surprisingly simple. A basic skill is just a Markdown file with a structured format:

--- name: my-custom-skill description: What this skill does and when to use it --- ## Steps 1. First, do X 2. Then check Y 3. If condition Z, do A 4. Otherwise, do B ## Rules - Always validate inputs - Never skip the review step

The key to a good skill is specificity. Vague instructions like "write good code" produce the same output as no skill at all. Effective skills define exact steps, decision points, and output formats. The skill-writer meta-skill can help — it guides you through creating well-structured skills by asking the right questions.

If you build something useful, consider sharing it. The skills ecosystem grows through community contribution, and directories like SkillsMap make discovery easier for everyone.

Where to Discover More Skills

The skills ecosystem is growing fast — from roughly 50 skills in mid-2025 to over 85,000 indexed across multiple platforms by March 2026. Here are the three places worth checking regularly:

PlatformWhat It OffersSkills IndexedBest For
skills.shOfficial Vercel-backed skills directory with install tracking. Ranks by anonymous telemetry from the npx skills CLI85,741+Finding the most-installed skills across 18 AI agents
MCP MarketSkills leaderboard ranked by GitHub stars. Categorized by use case (Developer Tools, Productivity, Data Science, etc.)100+ rankedDiscovering enterprise-grade skills from Facebook, PyTorch, Vercel, n8n
SkillsMapCurated directory with 14 categories, search, and cross-platform comparison. Combines data from skills.sh, MCP Market, and independent GitHub repos349Side-by-side comparison of skills by category and AI platform compatibility

According to skills.sh install data, the five most-installed skills as of March 2026 are:

  1. find-skills (vercel-labs) — 418.6K installs. The meta-skill: discovers and installs other skills
  2. vercel-react-best-practices — 176.4K installs. Official Vercel React patterns
  3. web-design-guidelines — 137.0K installs. Vercel's design system codified as a skill
  4. remotion-best-practices — 126.0K installs. Programmatic video creation in React
  5. frontend-design (Anthropic) — 124.1K installs. 50 visual styles with matched typography

On the MCP Market leaderboard, Facebook's React Code Fix & Linter leads with 242K GitHub stars, followed by several skills from the OpenClaw project — including a Coding Agent Orchestrator (228K stars) that delegates tasks across multiple AI agents simultaneously.

The ecosystem now supports 18 AI agents — not just Claude Code, but also Cursor, GitHub Copilot, Windsurf, Gemini, OpenAI Codex, Cline, Roo, AMP, Kiro CLI, and more. A skill installed via npx skills add works across any compatible agent, which explains the explosive install counts.

Frequently Asked Questions

What are Claude Code skills?

Claude Code skills are reusable instruction files (SKILL.md) that extend Claude Code's capabilities. They act like plugins — giving the AI agent specific workflows for tasks like TDD, debugging, frontend design, or database optimization. Skills are community-created and shared via GitHub repositories.

How do I install Claude Code skills?

Most skills install by copying the SKILL.md file into your project's .claude/skills/ directory. Some skills use the /install-skill command or can be added via the Claude Code CLI. After installation, invoke them with /skill-name in your Claude Code session.

Are Claude Code skills free?

The vast majority are free and open-source, hosted on GitHub. Some premium skill packs exist but the core ecosystem — including development, DevOps, testing, and design skills — is entirely community-driven and free to use.

What is the difference between Claude Code skills and MCP servers?

Skills are instruction-based — they tell Claude Code HOW to approach a task using structured prompts and workflows. MCP servers are tool-based — they give Claude Code the ABILITY to interact with external services. Many workflows combine both: a skill defines the process, and MCP servers provide the tools.

Browse the Full Skills Directory

Search and filter 349 skills across 12 categories. Sort by GitHub stars, filter by platform compatibility, and find the right skill for your workflow.

Open SkillsMap →

Related Articles