Top 33 Claude Skills I Actually Use in 2026
There are 500,000 Claude skills in circulation right now. I've installed somewhere around 180 of them across the last eight months. Most are garbage. Some are lightly-wrapped prompts with a README. A handful are hot glue holding together scraped GitHub templates. But about 5% are the reason my build time got cut in half this year — and the reason I stopped writing certain categories of code entirely.
I want to be honest about something before we go further. When I first heard "500,000 skills," I rolled my eyes. I assumed it was the usual hype cycle — a new term, a new marketplace, another thing to feel behind on. Then I watched a friend ship a full SaaS dashboard in a single afternoon using a stack of six skills I'd never touched. Clean UI. Proper test coverage. Deployed. Billing wired up. I went back to my machine that night and started rebuilding my setup from scratch.
This is the breakdown of the 33 top Claude skills that survived my testing — the ones I actually reach for on real client work, not the demos I installed once and forgot about. I've grouped them by what they do, because calling them all "skills" flattens something important about how the ecosystem actually works.
Skills vs MCPs vs Repos: The Three Words Everyone Mixes Up
Before the list, you need this vocabulary straight. I see people conflate these three things in every Discord I'm in, and the confusion is costing them working setups.
Skills are upgrades that improve Claude's performance on a specific task. Think of them as bundles of instructions, templates, and conventions that get loaded into context when they're needed. A design skill teaches Claude how to lay out a landing page. A test-driven skill teaches it not to write a line of code without a failing test first. They're about behavior.
MCPs (Model Context Protocols) are connectors. They're the cables that plug Claude into live data and external tools — browsers, databases, file systems, APIs, production apps. Where skills change how Claude thinks, MCPs change what it can reach.
Repos are the GitHub projects hosting the source code, install scripts, and sometimes entire agent frameworks that skills and MCPs depend on. The line between a skill and a repo blurs constantly because many skills ship as repos you clone.
The mental shortcut I use: skills teach, MCPs connect, repos deliver. Keep that framing in your head for the rest of this article and the 33 tools below will make immediate sense.
If you're brand new to this whole category, my earlier breakdown on Claude Code skills worth installing walks through the install mechanics. I won't repeat that here.
The Design and Front-End Skills That Changed My UI Output
I was shipping generic-looking UIs for longer than I'd like to admit. Clean enough. Functional. Boring. The first skill in this category fixed that overnight.
1. Front-End Design Skill
277,000 installs and counting. It's the most-installed Claude skill in the entire ecosystem, and it deserves the spot. What it actually does is enforce a strict set of rules: no generic system fonts, no symmetric padding everywhere, no default Tailwind color palettes, no shadcn/ui components dropped in without customization. It forces intentional layout decisions.
The first landing page I built with it looked like something a senior designer had agonized over for a week. I spent eleven minutes on it. That's the moment I realized design skills aren't cosmetic — they're leverage.
2. Claude Code Canvas for Visual Edits
A visual surface inside the terminal. You can see what you're building before Claude generates the next round of tweaks. The feedback loop drops from "generate, preview in browser, copy feedback back" to "point at the broken thing, keep going." I covered this one in depth on Claude Canvas and the visual terminal.
3. Canva Integration Skill
Generates social graphics, posters, and covers from text input. Not a replacement for a designer, but it absolutely replaces the part of my workflow where I used to open Figma to make a 1200x630 OG image. Now I describe it in a sentence and export a PNG.
4. Web Artifacts Builder
Interactive widgets — calculators, dashboards, toy apps — built from plain English. I use this for client demos. Instead of explaining what I'm going to build, I build a throwaway version in four minutes and let the client click through it.
The Engineering Skills That Write Better Code Than I Do
This is where the real revenue impact showed up. I'm going to be specific about that because I see too many AI posts that hand-wave the results.
5. Superpowers Skill
Created by Jesse Vincent. Over 100,000 GitHub stars. This isn't a single skill — it's a bundle of more than 20 of them that enforce test-driven development so aggressively that Claude will literally delete code you wrote if the corresponding test doesn't exist first.
I was skeptical. TDD is one of those things I believe in philosophically and skip in practice. But watching Claude refuse to write a function until I approved a failing test changed my relationship with my own codebase. Andrej Karpathy endorsed it publicly, which is probably why the star count exploded. If you write any production code with Claude, this is non-negotiable.
6. Context 7 MCP Server
Over 50,000 GitHub stars. Around 240,000 weekly NPM downloads. It injects live, up-to-date API documentation into Claude's context so you stop getting hallucinated React hooks that don't exist and Next.js patterns from three versions ago.
The moment I installed it, the rate at which I had to correct outdated code dropped by maybe 70%. Libraries covered include Next.js, React, Supabase, MongoDB, Prisma, and dozens more. It's the closest thing to a hallucination fix I've found. My longer writeup is in the Context7 skill wizard post if you want install steps.
7. Taskmaster
Breaks a large Product Requirements Document into structured tasks with dependencies, complexity scores, and subtasks. It works inside Cursor and Claude Code as a persistent project manager — the thing I most needed and most resisted paying a human to do.
I tested it on a client spec that was 18 pages of rambling requirements. Taskmaster turned it into 47 tasks, flagged 9 as high-complexity, and auto-generated subtasks for the three I told it to expand. What would have taken me two hours of planning took six minutes.
8. Codebase Memory MCP
Persistent memory of your codebase that tracks file relationships and how things change over time. Solves the "Claude forgot what we did yesterday" problem that every long-running project hits eventually. I paired it with Claude Code's native memory and the difference on week-two of any project is night and day.
9. Y Combinator's Claude Code Setup
Nearly 40,000 stars. A set of 15 structured prompts that simulate specific roles — CEO, designer, engineering manager, PM — and walk Claude through the kind of workflow a YC-backed team would actually use. The first time I ran the "engineering manager" prompt on a stalled project, it identified three blockers I'd been ignoring for a week.
10. Auto Researcher
An agent that runs continuous experiments to optimize models, prompts, or strategies. I used it to A/B test 140 variations of a landing page headline against a small traffic source. It reported winners with statistical significance and moved on without me touching it. More on this specific pattern in my auto research strategy post.
11. Claude Squad
65,000 GitHub stars. Runs multiple Claude agents in parallel for concurrent task execution. You can have one agent writing tests while another refactors a service while a third drafts release notes. I use it for any project with three or more independent work streams.
12. Container Use by Dagger
Isolated container environments for AI agents. The point is damage control — when an agent goes rogue and tries to rm -rf something important, it's trapped in a sandboxed container. After the second time I watched Claude helpfully "clean up" a directory I needed, I installed this and never turned it off.
13. Skill Creator (Official Anthropic)
A meta-skill that generates skill files from plain English descriptions of your workflow. Describe what you wish Claude did automatically, and it outputs a valid skill you can install. This is the bootstrap kit for building your own custom stack. I broke down my testing process in this Claude skill creator deep dive.
The MCPs That Plug Claude Into the Real World
Skills make Claude smarter. MCPs make Claude effective. There's a meaningful difference between the two, and it shows up the first time you watch an agent interact with a live browser instead of describing what it would do if it could.
14. Microsoft Browser Control MCP
Enables Claude to control a web browser the way you do — click buttons, fill forms, take screenshots, navigate pages, scrape data. Use cases I've shipped with it: automated end-to-end tests for a client dashboard, weekly competitor pricing snapshots, form-filling for a data migration that would have taken a full day by hand.
15. Firecrawl
97,000 GitHub stars. It converts websites into LLM-ready structured data. Where traditional scrapers return HTML soup, Firecrawl returns clean Markdown with the noise stripped out. I use it for research pipelines and content repurposing — anywhere I need to feed Claude a bunch of URLs and get back actual information. My full review lives in the Firecrawl agentic web access post.
16. Search Engine for AI Agents
A remote MCP that exposes search, extract, crawl, and map as tools your agents can call. I chain this with Firecrawl when I need to research a topic at scale — search for sources, extract the content, map the internal links, then hand it all to a writing agent.
17. GPT Researcher
Autonomous cross-referencing and report generation. It's open source and model-agnostic, so I've run it with Claude as the backend and gotten research reports that I would have paid a junior analyst to produce. Eight to twenty citations per report, all live-verified.
18. Deep Research Skill
An eight-phase pipeline with credibility scoring and automated source validation. This is the one I reach for when I need research I can actually defend — not just "the internet said so." It rejects sources below a credibility threshold and flags contradictions between sources.
19. Obsidian Skills
Integrates Obsidian with Claude so your AI can auto-tag notes, link them to related ideas, and pull from your personal knowledge base when it writes. I've been building a second brain in Obsidian for years; this was the moment it became useful to Claude.
The Marketing, Writing, and Content Skills
I came from marketing before I became an app builder, so this category matters to me personally. I've tested the popular options and most of them are mediocre wrapper prompts. These four are different.
20. Marketing Skills by Corey Haines
16,000+ stars. More than 20 sub-skills covering conversion rate optimization, copywriting, SEO, email sequences, growth engineering. What sets it apart: it includes automated website audits with schema validation, actual checklist-driven CRO reviews, and email sequence templates with psychological framing baked in. It's the first marketing skill I've used that reads like it was built by someone who's actually run campaigns.
21. Brand Guideline Skill
Encodes your brand voice, colors, and tone into a skill Claude applies automatically across everything it writes or designs. I built one for each of my four brands (mejba.me, Ramlit, ColorPark, xCyberSecurity) and the consistency improvement across outputs was immediate. No more "does this sound like me?" edits.
22. Collaborative AI Writing
Real-time co-authoring where Claude responds interactively as you type — like Google Docs with a partner who never sleeps. I use it for first drafts and the kind of back-and-forth editing that used to require a human co-writer.
23. Slide Deck Generation
Layouts, charts, speaker notes from natural language. I stopped building client decks from scratch the day I installed this. For a 14-slide proposal deck, my time went from two and a half hours to about twenty minutes — and the output looks better because I'm not burning energy on layout decisions.
The Document and Data Skills
This is the category people sleep on. The quiet productivity wins.
24. Document and Spreadsheet Skills
Read, extract, and manipulate tables and forms from documents fast. Build Excel-like spreadsheets from plain English instructions — formulas, charts, data analysis, pivot tables — without Excel actually installed anywhere. I migrated a client's legacy reporting workflow off Excel entirely using this skill.
25. Token Efficiency Skill
Reduces token usage through knowledge base caching and context optimization. For anyone running Claude at scale, this matters because token bills are real. On my busiest week in March, it cut my API spend by roughly 40% without any measurable drop in output quality. I covered a related pattern in my caveman token optimization writeup.
26. Remotion
117,000 weekly installs. Creates polished motion graphic demo videos from code — which sounds niche until you realize every SaaS landing page now needs a hero video. I use it for product demo videos and marketing clips. My full workflow is in the Remotion video workflow post.
The Automation and Agent Infrastructure
These are the repos and frameworks that sit underneath everything else. The plumbing layer.
27. n8n
180,000 GitHub stars. Open-source workflow automation with 400+ integrations and built-in AI nodes. It's the visual layer I reach for when I need to wire Claude into a business process — webhook in, Claude processes it, output goes to Slack or Notion or a database. I've shipped six client automations on top of n8n this year alone.
28. LangFlow
146,000 stars. A drag-and-drop visual builder for AI agent pipelines. It's what I hand to non-technical clients who want to understand what their agent is actually doing. The visual graph turns an opaque system into something they can reason about.
29. Ghost OS
Early-stage but fascinating. An AI agent that controls all your Mac apps by interacting with the screen and apps directly — it sees what you see and clicks what you would click. Still rough at the edges, but the first time it opened Figma, copied a component, pasted it into Notion, and wrote a summary of the design decisions, I knew where this category was headed.
30. Prompt Foo
Automated security testing for AI prompts — vulnerability scanning, red teaming, prompt injection detection. If you're shipping anything with user-supplied input flowing into Claude, this is mandatory. I run it before every production deployment. It's caught four genuine injection paths on my projects this year, two of which I never would have thought to test manually.
The Resource Hubs for Discovering the Other 499,967 Skills
You don't find the good skills by browsing the entire marketplace. You find them by watching what curators surface.
31. Awesome Claude Skills
95,000 stars. A community-curated list of the skills worth installing, updated constantly. It's the first place I check when someone tells me a new skill is making the rounds. If it's not here within a week of release, that's a signal.
32. Official Anthropic Skills Repo
Over 100,000 stars. Reference implementations for building your own skills. This is the canonical "how a skill should be structured" resource. When I'm building custom skills for clients, I read Anthropic's examples before I read anyone else's.
33. Skills MP, Skill Hub, and Maggie Archive
Three marketplaces worth your time. Skills MP has the largest catalog at 500,000+ skills. Skill Hub filters down to around 30,000 AI-rated picks sorted by quality signal. Maggie Archive publishes a daily feed of new AI repos. I check Skill Hub weekly and Maggie Archive daily while I drink my morning coffee. Most days I find nothing. Maybe once a week something worth testing surfaces.
The Honest Problems Nobody Talks About
Here's the part most roundup articles skip because it breaks the narrative.
Skill conflicts are real. I installed the Front-End Design skill and Superpowers on the same project and spent an afternoon debugging why Claude kept writing tests for CSS. The instruction sets contradicted each other in subtle ways. You will eventually hit this. When you do, read both skill files and manually resolve the conflict — there is no automated fix yet.
Install rot is real. Maybe a third of the skills I installed six months ago are now broken or abandoned. Dependencies drift, APIs change, maintainers move on. I now do a quarterly cleanup where I test everything I have installed and uninstall anything that hasn't been updated in 90 days.
Token costs from poorly-built skills are real. Some skills inject enormous context blocks into every request — I'm talking 15,000 tokens of boilerplate before your actual prompt runs. I caught one skill adding a 22-page "best practices" document to every message. Read the skill source before installing, or at least monitor your token usage after.
The "500,000 skills" number is meaningless. It's a marketplace count. The actual useful corpus is maybe 2,000-5,000 skills, and the truly excellent ones — the stuff I've covered in this article — number in the low hundreds. Don't feel behind because you haven't tried most of them. Nobody has.
What Actually Changes When Your Stack Is Right
I want to skip the fake metrics and tell you what I've observed.
My build time on a typical client project — a medium-complexity internal dashboard or landing page — dropped from roughly 2-3 days to roughly 1 day once my skill stack stabilized. That's not a perfect measurement because every project is different. But the pattern is consistent across the 30-plus projects I've shipped with Claude Code this year.
The quality improvement is harder to quantify but easier to feel. My UIs look better because Front-End Design bakes in taste. My code is more reliable because Superpowers refuses to let me skip tests. My research is more defensible because Deep Research flags weak sources. My marketing copy is more consistent because the Brand Guideline skill catches voice drift I wouldn't notice myself.
The cost reduction is smaller than the productivity gain but still meaningful. Token efficiency skills plus a good caching setup trimmed my monthly API spend noticeably — enough that I stopped tracking it as a worry line item.
And the compounding effect is the thing I did not anticipate. Once the stack was in place, I started noticing patterns in my own work that I could turn into custom skills using Skill Creator. My setup is now recursively improving. Every week it's a little better than the week before, and I'm barely doing the work.
The 24-Hour Challenge
If you do nothing else after reading this article, do this tonight.
Install three skills. Not 30. Three. Pick Front-End Design, Superpowers, and Context 7. That's the minimum viable stack that will make tomorrow's coding session measurably better than yesterday's. Spend an hour actually using them on real work — not a demo project, not a tutorial, real work with real stakes.
If any of the three doesn't click for how you build, uninstall it and try one from the list above that does. The goal isn't to collect skills. The goal is to build a set of tools that matches how you actually work, one skill at a time, with honest evaluation at each step.
Six months ago I had a messy, improvised Claude setup and I was convinced I was already working at the ceiling of what the tool could do. I was nowhere near it. The ceiling I'm working at now is higher, and the ceiling six months from now will be higher still. Not because Claude is changing that fast — though it is — but because the skills ecosystem around it is maturing faster than any part of the AI stack I watch.
The tools are here. The question is whether you're willing to spend the afternoon it takes to set them up properly.
FAQ
Frequently Asked Questions
Everything you need to know about this topic
Skills change how Claude thinks and behaves on specific tasks, while MCPs connect Claude to live external tools and data sources. Skills are instructional — they teach Claude conventions, templates, and workflows. MCPs are connective — they plug Claude into browsers, databases, APIs, and file systems. You usually want both: skills for quality, MCPs for reach. For the full mental model, see the "Skills vs MCPs vs Repos" section above.
Send Claude the skill's GitHub link directly and it automates the setup for most well-built skills. The Skill Creator and Awesome Claude Skills repos document the install patterns if the skill's README is thin. Always read the skill source before installing to check for unusually large context injections that can spike your token costs.
Start with Front-End Design Skill, Superpowers, and Context 7 MCP. This three-skill minimum viable stack covers design quality, code quality, and hallucination prevention — the three biggest quality problems with vanilla Claude Code. Add skills from there based on your specific workflow, not based on what's trending.
No. Roughly 5% of Claude skills in the marketplace are genuinely valuable, and the truly excellent ones number in the low hundreds. The 500,000 figure is a marketplace count, not a quality signal. Use curated lists like Awesome Claude Skills and Skill Hub's quality-sorted catalog instead of browsing the full marketplace.
Install skills one at a time and test each on real work before adding the next. When conflicts appear — Claude behaving unexpectedly or outputting contradictory results — read both skill source files and manually resolve the conflicting instructions. There is no automated conflict resolution yet, which makes careful sequencing essential.
Let's Work Together
Looking to build AI systems, automate workflows, or scale your tech infrastructure? I'd love to help.
- Fiverr (custom builds & integrations): fiverr.com/s/EgxYmWD
- Portfolio: mejba.me
- Ramlit Limited (enterprise solutions): ramlit.com
- ColorPark (design & branding): colorpark.io
- xCyberSecurity (security services): xcybersecurity.io