The Claude Code skills ecosystem has crossed 60,000 published skills, as reported by industry sources tracking the ecosystem. That number keeps climbing every week. The problem is that most of them are noise: thin wrappers, half-finished experiments, or duplicates of something that already exists. If you have spent any time scrolling through skill directories, you know the feeling of trying to find a needle in a haystack.
This list cuts through that. These are the Claude Code skills that have real adoption, active maintenance, and proven utility. The ones that actually change how you work, not the ones that just pad a GitHub profile.
I have been building and using Claude Code skills since the early days of the ecosystem. I created Claude SEO, which now has over 3,000 GitHub stars, and I have tested hundreds of other skills along the way. This list is based on that experience, not on marketing claims.
What are Claude Code skills?
Before diving into the list, a quick primer for anyone new to this. Claude Code skills are model-invoked tool packages that extend what Claude Code can do. Each skill is defined by a SKILL.md file that contains instructions, commands, and behavior definitions. When Claude Code detects a skill in your project (or installed globally), it automatically loads it and makes the skill's commands available.
Skills are different from simple prompts or templates. They can:
- Define slash commands (like
/seo auditor/blog write) - Spawn parallel sub-agents for complex tasks
- Include sub-skills that handle specialized domains
- Auto-trigger based on file context or project type
- Connect to external APIs and MCP servers
Think of them as plugins, but defined entirely in Markdown and executed by the model itself. No compiled code, no package manager, no dependency hell.
SEO and marketing skills
Claude SEO
3,000+ GitHub stars | 14 sub-skills | 9 parallel agents | GitHub
Full disclosure: I built this one. But I am including it because it is the most comprehensive SEO skill in the ecosystem by a wide margin, and the star count reflects genuine adoption rather than self-promotion.
Claude SEO runs a full website audit with 9 AI agents working in parallel. Each agent handles a different dimension: technical SEO, content quality (E-E-A-T), schema markup, GEO/AI search readiness, performance (Core Web Vitals with INP), on-page optimization, sitemap analysis, visual analysis, and conditional local SEO. The result is a 0-100 health score and a prioritized action plan.
What sets it apart from traditional SEO tools is the GEO (Generative Engine Optimization) capability. It does not just check if your site ranks in Google. It evaluates whether your content is citable by ChatGPT, Perplexity, Google AI Overviews, and Bing Copilot. That is the SEO frontier that most tools still ignore.
It also includes 16 slash commands covering everything from single-page analysis to competitor comparison to schema generation. You can read the detailed comparison with Ahrefs and Semrush for more context on how it stacks up against paid tools, or see the step-by-step technical SEO audit guide for a walkthrough of the 9-category analysis.
git clone --depth 1 https://github.com/AgriciDaniel/claude-seo.git bash claude-seo/install.sh
Claude Blog
Open-source | 17 commands | 12 templates | 100-point scoring | GitHub
Claude Blog is a content creation and management skill that handles the full lifecycle of blog publishing. It includes 12 article templates (listicles, how-to guides, case studies, comparisons, and more), a 100-point content quality scoring system, and built-in SEO optimization for every post it generates.
The scoring system evaluates readability, keyword integration, structure, internal linking, and E-E-A-T signals. It is not a "generate and forget" tool. It produces drafts that are ready for human review with specific improvement suggestions attached.
Claude Banana
Open-source | AI image generation | GitHub
Claude Banana connects Claude Code to Gemini's image generation capabilities. It handles prompt engineering, style consistency, and batch generation for marketing assets. Useful for creating social media graphics, blog post images, and product mockups without leaving the terminal.
Development and code quality skills
Frontend Design (Anthropic official)
277,000+ installs | Official Anthropic skill
This is the most-installed Claude Code skill as of March 2026. Built and maintained by Anthropic, it enhances Claude Code's ability to generate, review, and refactor frontend code. It handles React, Vue, Svelte, and vanilla HTML/CSS with awareness of modern patterns, accessibility standards, and responsive design best practices.
The skill is notable for its design-to-code capability. You can describe a UI component in natural language and get production-quality code that follows current best practices, including proper ARIA attributes and keyboard navigation.
Code review skills
Several strong code review skills have emerged in the ecosystem. Anthropic maintains an official code-reviewer skill in their skills repository that handles PR analysis, architectural feedback, and security flagging out of the box. CodeRabbit, also available as a Claude Code skill, adds AI-powered line-by-line review with auto-fix suggestions. The best options go beyond linting. They analyze architectural patterns, flag potential security issues, check for performance regressions, and suggest refactoring opportunities. Look for skills that integrate with your existing Git workflow and can produce structured review comments.
TDD (Test-Driven Development) skills
TDD skills help enforce the red-green-refactor cycle directly in Claude Code. Anthropic's official test-driven-development skill generates test cases from specifications, runs tests automatically, and guides the implementation to make failing tests pass. It supports multiple testing frameworks and can generate both unit and integration tests.
Git automation skills
Git automation skills handle the repetitive parts of version control: generating meaningful commit messages from diffs, creating PR descriptions, managing branch strategies, and resolving merge conflicts. The commit-commands skill from Anthropic's official skills repository handles commit message generation with convention awareness. The best options learn your team's commit message conventions and apply them consistently.
Document processing skills
Document processing was one of the early pain points that Claude Code skills solved well. Anthropic maintains official PDF and DOCX skills in their skills repository, which cover the most common formats. The ecosystem now has mature options for every major format:
- PDF skills - extract text, tables, and images from PDFs. Anthropic's official PDF skill handles multi-page extraction, table parsing, and embedded image detection. Some community skills add OCR integration for scanned documents. Useful for processing invoices, contracts, and research papers.
- DOCX skills - read and write Word documents with formatting preservation. Anthropic's official DOCX skill handles reading and writing with structural awareness. Community options add templates, mail merge, and batch document generation.
- PPTX skills - generate slide decks from outlines or data. Some can analyze existing presentations and suggest improvements to structure and visual hierarchy.
- XLSX skills - process spreadsheets, generate reports, and create data visualizations. Handle formulas, pivot tables, and cross-sheet references.
The key differentiator between good and bad document processing skills is how they handle edge cases: corrupted files, unusual encoding, embedded objects, and large file sizes. The mature skills handle these gracefully instead of failing silently.
Productivity skills
Remotion (video generation)
Remotion skills connect Claude Code to the Remotion framework for programmatic video generation. You describe scenes, transitions, and content in natural language, and the skill generates React-based video compositions. Useful for creating explainer videos, social media clips, and data visualization animations.
NotebookLM connector
Skills that bridge Claude Code with Google's NotebookLM allow you to process research materials, generate summaries, and create audio overviews from your terminal. Useful for researchers and content creators who work with large document collections.
Comparison table: top Claude Code skills at a glance
| Skill | Category | Stars / Installs | Key feature |
|---|---|---|---|
| Claude SEO | SEO | 3,000+ stars | 9 parallel agents, 0-100 health score |
| Frontend Design | Development | 277,000+ installs | Official Anthropic, design-to-code |
| Claude Blog | Content | Open-source | 17 commands, 100-point scoring |
| Claude Banana | Creative | Open-source | AI image generation via Gemini |
| Remotion skills | Productivity | Varies | Programmatic video generation |
| PDF/DOCX processors | Documents | Varies | Multi-format extraction and generation |
| TDD skills | Development | Varies | Red-green-refactor automation |
| Git automation | Development | Varies | Smart commits, PR descriptions |
How to install Claude Code skills
Installing a skill is straightforward. Most skills follow the same pattern:
Step 1: Clone the skill repository
git clone --depth 1 https://github.com/username/skill-name.git
Step 2: Run the install script
bash skill-name/install.sh
Step 3: Open Claude Code and use the skill
claude # Then type the skill's slash command /skill-command
Skills install to ~/.claude/skills/ by default. Once installed, they are available in every Claude Code session, regardless of which project you are working in. You can also install skills locally to a specific project by placing the SKILL.md file in your project's .claude/skills/ directory.
To see all installed skills, check your skills directory:
ls ~/.claude/skills/
How to choose the right skills
With 60,000+ skills available, choosing wisely matters more than installing everything. Here is what to look for:
- Active maintenance - check the last commit date. Skills that have not been updated in months may not work with the latest Claude Code version.
- Real adoption - GitHub stars, forks, and open issues are decent proxies. But also look at whether issues get responses.
- Clear documentation - a well-documented SKILL.md is a sign that the author cares about usability, not just functionality.
- Scope discipline - the best skills do one thing well. Skills that try to do everything usually do nothing reliably.
- No unnecessary API dependencies - some skills require paid API keys for basic functionality. The best ones work fully offline or with free-tier APIs, with paid integrations as optional extensions.