Tools

The Best Claude Code Skills Repositories: April 2026 Roundup

Claude Code skills have quietly become one of the most practical ways to extend what an AI coding agent can do. A skill is just a Markdown file with instructions, but the right collection of skills can turn a general-purpose agent into a specialist: a marketing copywriter, a website auditor, a video producer, a research assistant.

The problem is discovery. New repositories appear every week, most of them aggregating other lists. Some contain genuinely useful, tested skills. Others are padded with low-quality filler. This roundup cuts through the noise. I have reviewed the major collections available as of April 2026, organised them by use case, and ranked them so you can find the right one without wading through dozens of GitHub repos.


What are Claude Code skills?

A Claude Code skill is a .md file that lives in your project's .claude/skills/ directory. Each file contains a set of instructions, context, and rules that Claude loads when you invoke the skill via a slash command. Think of it as a reusable prompt with structure: it tells Claude what role to play, what constraints to follow, what output format to produce, and what to avoid.

Skills are not plugins or compiled code. They are plain text. That makes them easy to read, easy to edit, and easy to share. It also makes them easy to abuse, which is why the safety section later in this post matters.

The ecosystem grew fast through early 2026. What started as individuals sharing their personal CLAUDE.md configurations evolved into structured repositories with dozens or hundreds of purpose-built skills, often organised by domain. Here are the collections worth knowing about.


How skills work

The mechanics are simple. Claude Code checks for .md files inside .claude/skills/ in your project root. Each file becomes available as a slash command. When you type the command, Claude reads the skill file and uses its contents as additional instructions for the current task.

To install a skill from GitHub, you have three options:

  • Ask Claude Code directly: paste the repo URL into your conversation and ask Claude to install the skills. It will read the repo and place the files in the right directory.
  • Manual download: download the .md files from the repo and drop them into .claude/skills/ yourself.
  • Via skills.sh: some repos publish to skills.sh, a community directory that makes installation a single click.

Skills can be project-level (inside a specific project's .claude/skills/) or global (inside your home directory's ~/.claude/skills/). Project-level skills override global ones if there is a name conflict.


The big three collections

Three repositories stand out as the most complete and well-maintained general-purpose collections. If you only look at three, make it these.

ComposioHQ/awesome-claude-skills

ComposioHQ/awesome-claude-skills is the most popular community collection, with 78+ skills covering SaaS integrations, document processing, business automation, and developer tools. The skills are well-structured, include clear descriptions, and tend to focus on practical workflows: connecting to APIs, generating reports, processing files. If you work in a business context and want skills that handle real operational tasks, this is the first place to look.

anthropics/skills

anthropics/skills is the official Anthropic collection. It covers PDF, DOCX, and PPTX generation, design workflows, and enterprise use cases. Being first-party, these skills are designed to work cleanly with Claude Code's architecture and are tested against current model behaviour. The collection is smaller than some community repos but the quality bar is higher. If you need document generation or structured design output, start here.

obra/superpowers

obra/superpowers focuses on engineering methodology: TDD workflows, structured debugging, code review frameworks, and refactoring patterns. This is not a grab-bag of random skills. It is an opinionated system for making Claude Code a better software engineering partner. If you write code with Claude Code daily, this collection changes how the agent approaches problems.


Best for marketing

coreyhaines31/marketingskills

coreyhaines31/marketingskills is the most focused marketing collection available, with 40+ skills covering copywriting, SEO, CRO, paid ads, growth strategy, email sequences, and landing page optimisation. Unlike general-purpose repos that happen to include a few marketing skills, this one was built by a marketer for marketers. The skills are specific: there is a difference between "write marketing copy" and "write a Google Ads headline that fits character limits and includes the target keyword," and this repo understands that difference.

If you run marketing for a business or agency and want Claude Code to handle the repetitive parts of campaign creation, content briefs, or conversion analysis, this is the collection to install.


Best for design and video

Remotion AI skills

Remotion's AI skills bring video automation into Claude Code. Remotion is a React-based framework for creating videos programmatically, and their official skills let Claude Code generate, edit, and render video projects. If you produce video content at scale (social media clips, product demos, explainer videos), these skills let you describe what you want and have Claude build the Remotion composition.

Anthropic's design skills

The anthropics/skills repo (mentioned above) also includes design-specific skills for layout generation, visual asset creation, and presentation design. Combined with the document generation skills, they cover the full pipeline from concept to deliverable.


Best for web development and audits

squirrelscan/skills

squirrelscan/skills is built around website auditing with 200+ rules covering security, SEO, performance, accessibility, and content quality. Instead of running separate tools for each audit category, you get a single skill set that Claude Code can use to crawl a site and generate a structured health report.

This is particularly useful if you build or maintain websites for clients. Run the audit before a launch, after a major update, or as part of a monthly maintenance check. The rules are specific and actionable, not vague suggestions.


Best for research and deep work

alirezarezvani/claude-skills

alirezarezvani/claude-skills is one of the largest single-author collections, with 235+ skills across 9 domains and 305 CLI tool integrations. The breadth is impressive: data analysis, academic research, technical writing, system administration, DevOps, and more. If your work spans multiple disciplines and you want one repo that covers most of them, this is the deepest option.

VoltAgent/awesome-agent-skills

VoltAgent/awesome-agent-skills curates 1,184+ skills that have been hand-picked and categorised. Unlike pure aggregators that scrape every repo they find, VoltAgent applies editorial judgement. Skills are grouped by domain and quality-checked. If you want a large collection where someone has already filtered out the noise, this is the one.


Project management and autonomous building

gsd-build/get-shit-done

gsd-build/get-shit-done is not a collection of individual skills. It is a 5-phase project management framework that structures how Claude Code approaches an entire project: define, plan, build, test, ship. Each phase has its own skill file with specific instructions. The result is a Claude Code session that follows a structured workflow instead of reacting to prompts one at a time.

This is one to watch rather than install blindly. The framework is opinionated and may conflict with your existing workflow. But the idea of giving Claude Code a project management layer (not just task-level skills) is valuable, especially for longer builds.

snarktank/ralph

snarktank/ralph takes a different approach: it is an autonomous loop builder. Ralph structures Claude Code to work in cycles, planning, executing, reviewing, and iterating without you prompting each step. It is experimental and best suited to well-defined, contained projects where you can let the agent run with guardrails.


Mega-collections worth bookmarking

sickn33/antigravity-awesome-skills

sickn33/antigravity-awesome-skills lists 1,423+ skills, making it one of the largest aggregators available. The trade-off with any collection this size is consistency. Not every skill has been tested or vetted. But as a discovery resource (a place to browse when you need a skill for something specific), it is useful. Search the README by keyword, find a skill that looks relevant, then review it before installing.

travisvn/awesome-claude-skills

travisvn/awesome-claude-skills is another community aggregator that collects and categorises skills from across the ecosystem. It is well-maintained and regularly updated. Use it alongside sickn33's list for comprehensive coverage.


How to pick the right collection

Twelve repositories is a lot to process. Here is the quick version:

If you need... Start with
General-purpose business skills ComposioHQ/awesome-claude-skills
Official, tested document/design skills anthropics/skills
Better engineering methodology obra/superpowers
Marketing, SEO, ads, copy coreyhaines31/marketingskills
Video automation Remotion AI skills
Website auditing squirrelscan/skills
Multi-domain research alirezarezvani/claude-skills
Curated large library VoltAgent/awesome-agent-skills
Project management framework gsd-build/get-shit-done
Maximum discovery/browsing sickn33/antigravity-awesome-skills

My recommendation: install one or two focused collections that match your actual work, then bookmark the mega-aggregators for when you need something specific. Installing everything at once creates noise.


Safety first: verify before you install

A Claude Code skill is a set of instructions that Claude will follow. That means a malicious skill can do real damage: instruct Claude to modify your files, exfiltrate environment variables, run destructive shell commands, or inject code into your projects. The risk is not theoretical. As the ecosystem grows, the surface area for supply-chain-style attacks grows with it.

Before installing any community skill, follow these steps:

  1. Read the full .md file. Skills are plain text. There is no excuse for not reading them. If the instructions are obfuscated or suspiciously complex for what the skill claims to do, skip it.
  2. Check the repo's history. Look at commit activity, contributor count, and whether the repo has any issues or discussions. A repo with zero engagement and hundreds of skills is a red flag.
  3. Test in a disposable project first. Do not install untested skills into a production workspace. Create a throwaway project, install the skill, run it, and verify what it actually does.
  4. Run it through a security review. I built a Skill Reviewer specifically for this purpose. It analyses the contents of any skill file and flags potential risks: file system access, shell command execution, data exfiltration patterns, and overly broad permissions. Before you add a community skill to your workflow, run it through the reviewer first.

The vast majority of skills in the repositories listed above are safe and useful. But "most are fine" is not a security policy. Review first, install second.


What I am building

I publish my own Claude Code skills at the JQ AI SYSTEMS Skills Lab. The collection is small and intentional: each skill is something I use in production, tested across real client projects before publishing.

The skills published so far cover practical workflows I run regularly. They are free, open, and designed to work out of the box. The Skill Reviewer mentioned above is part of this collection: a skill that audits other skills before you install them.

If you found this roundup useful and want to stay current as new collections appear, the Skills Lab is where I will publish future updates and new skills as I build them.

Browse the Skills Lab →


Repositories referenced in this roundup:

  1. ComposioHQ/awesome-claude-skills (78+ skills, SaaS and business automation)
  2. anthropics/skills (official Anthropic, document and design)
  3. obra/superpowers (engineering methodology, TDD, debugging)
  4. coreyhaines31/marketingskills (40+ marketing skills)
  5. Remotion AI skills (video automation)
  6. squirrelscan/skills (200+ audit rules)
  7. alirezarezvani/claude-skills (235+ skills, 9 domains)
  8. VoltAgent/awesome-agent-skills (1,184+ curated skills)
  9. gsd-build/get-shit-done (project management framework)
  10. snarktank/ralph (autonomous loop builder)
  11. sickn33/antigravity-awesome-skills (1,423+ skills)
  12. travisvn/awesome-claude-skills (community aggregator)
Build Yours

Want a system
like this one?

Book a free 30-minute call. We map your situation, identify the highest-impact automation, and figure out if we are a fit.

Book Free 30-min Call