Code Kit v5.2 is out, optimized for Claude Opus 4.7.
Claude FastClaude Fast
Skills

Best Claude Code Skills: 9 Repos vs ClaudeFast Code Kit

9 popular Claude Code skill repos compared. What ships, what you assemble, and why ClaudeFast Code Kit's 18 agents and 167 skill files outperform DIY.

Stop configuring. Start shipping.Everything you're reading about and more..
Agentic Orchestration Kit for Claude Code.

A Claude Code skill is a folder of markdown instructions, scripts, and reference data that Claude loads on demand using progressive disclosure. The best skill repos in 2026 fall into two camps: standalone packs you assemble yourself, and integrated systems that ship pre-wired. This guide compares the nine most-installed standalone packs against ClaudeFast's Code Kit, the integrated alternative.

Quick verdict: Standalone skill packs (superpowers, antigravity-skills, wshobson/agents) require manual assembly with hooks, agents, and MCP servers. ClaudeFast Code Kit ships 18 specialized agents, 167 skill files across 21 categories, 5 production hooks, and the /team-plan + /build pipeline as one integrated system.

Why Skill Choice Matters in 2026

Three numbers explain the urgency. The Claude Code skills ecosystem indexed 15,134 repositories by May 2026 (per quemsah/awesome-claude-plugins). The most-starred framework, obra/superpowers, crossed 94,000 stars. And Anthropic's official skills repository now treats SKILL.md as a portable, cross-tool standard.

That growth created a problem: every repo solves a slice. Engineering workflows live in one pack. Marketing skills live in another. Hooks live in a third. Agents live in a fourth. The result for most teams is "skills soup": 5 to 10 frameworks fighting for context, no single source of truth.

The two ways to resolve the soup:

  1. Pick one standalone framework and ignore the rest (forces you to write the missing pieces)
  2. Adopt an integrated system that ships agents, skills, hooks, and routing as one bundle

This guide compares both paths.

Quick Win: Install One Standalone Skill in 60 Seconds

If you want to test the standalone path before reading further:

git clone https://github.com/obra/superpowers.git ~/.claude/superpowers
echo "Read ~/.claude/superpowers/CLAUDE.md before any task" >> ~/.claude/CLAUDE.md

That gives you Jesse Vincent's TDD-enforced workflow used by 94,000 developers. You'll still need to add agents, hooks, and MCP wiring separately.

The 9 Best Standalone Skill Repos (Compared)

Star counts pulled from GitHub in early May 2026 and rounded.

1. obra/superpowers (94k stars)

The most-installed agentic skills framework on GitHub. Built by Jesse Vincent (Anthropic engineer) around a 7-phase workflow: Brainstorm, Spec, Plan, TDD, Subagent Development, Review, Finalize. The framework will literally delete code written before tests exist.

What it gives you: A strict TDD opinion baked into every session.

What you still build: Specialized agents, hooks for auto-approval, MCP integrations, session lifecycle management.

Best for: Solo founders who want one strong opinion and will write everything else.

2. sickn33/antigravity-awesome-skills (31k stars)

The biggest skills library by raw count: 1,340+ agentic skills bundled with an installer CLI, workflow packs, and official + community collections. Cross-compatible with Claude Code, Cursor, Codex CLI, Gemini CLI, and Antigravity.

What it gives you: A buffet of installable skills.

What you still build: A coherent system. Browsing 1,340 skills is not a workflow; it's a research project.

Best for: Anyone who wants to graze before committing to a stack.

3. wshobson/agents (33k stars)

Not a skills repo strictly, but a 33,000-star agent definition library. Contains specialist agent prompts (frontend, backend, security, performance, debugger) ready to drop into .claude/agents/.

What it gives you: Generic specialist agents.

What you still build: Skills they call, hooks they trigger, MCP servers they consume, and the routing logic between them.

Best for: Engineers who already have a skills layer and want better agent definitions.

4. VoltAgent/awesome-agent-skills (14.4k stars)

Curated index of 1,000+ agent skills sourced from official dev teams (Notion, Stripe, Anthropic) plus community contributions. Cross-platform: Claude Code, Codex, Antigravity, Gemini CLI, Cursor.

What it gives you: A discovery layer, not an install.

Best for: Bookmark and reference when you need a skill for an unfamiliar platform.

5. coreyhaines31/marketingskills (19.1k stars)

Full-stack marketing skills with 33 skills and 61 CLI tools spanning CRO, SEO, copywriting, analytics, and growth engineering. The most-starred non-engineering skills repo.

What it gives you: Marketing execution scripts.

What you still build: The strategy upstream of execution. We cover the full marketing comparison in our marketing skills roundup.

6. forrestchang/andrej-karpathy-skills (17k stars)

A single CLAUDE.md file derived from Karpathy's published observations on LLM coding pitfalls. Not a skills pack, a calibration prompt.

Best for: Drop-in upgrade alongside any other framework. Works with everything because it conflicts with nothing.

7. shanraisshan/claude-code-best-practice (32.3k stars)

Trending on GitHub in March 2026 and growing. A playbook covering CLAUDE.md structure, skill authoring, hook patterns, and sub-agent orchestration distilled from heavy production use.

Best for: Reading before writing your own skills. Antidote to the "install everything" reflex.

8. anthropics/skills (official)

The reference implementation. Example SKILL.md files demonstrating progressive disclosure and the composable, portable skill format. The tiebreaker when community skills disagree on structure.

Best for: Format reference. Every skill you write should match the structure here.

9. ericosiu/ai-marketing-skills (1.5k stars)

Eric Siu's marketing skills covering 11 categories built on direct-response marketing principles. Smaller and more opinionated than coreyhaines31's pack.

Best for: Marketers who already know the direct-response playbook.

ClaudeFast Code Kit: The Integrated Alternative

ClaudeFast's Code Kit ships as one bundle covering every layer the standalone packs cover separately:

LayerWhat ships
Specialist agents18 specialized agents (frontend, backend, supabase, quality, security, performance, debugger, content, SEO, growth, n8n, iOS, Flutter, simplifier, librarian, master-orchestrator, deep-researcher, visual-explainer)
Domain skills167 customer-facing skill files across 21 categories (React, Postgres, infra-ops, payment-processing, mobile-design, session-management, and more)
Hooks5 production hooks (SkillActivation, PermissionHook, ContextRecovery, Formatter, BiomeValidator)
Slash commands/team-plan, /build, /team-build, /blog, /view for structured execution
Architecture5-tier complexity routing, build-then-validate pattern, Agent Teams support
Skills loaderSkillActivationHook recommends relevant skills per prompt automatically

Two specific differentiators matter for this comparison:

1. The skills are wired to the agents. When the master-orchestrator routes a task to backend-engineer, the relevant Postgres and payment-processing skills load automatically. In a standalone setup, you wire that yourself.

2. The hooks are wired to both. ContextRecoveryHook backs up session state before compaction (recovering ~15,000 tokens per session). FormatterHook runs Prettier on every Write/Edit. SkillActivationHook injects skill recommendations on every prompt. Standalone packs require you to build this layer from scratch.

Side-by-Side: Standalone vs Integrated

CapabilityStandalone Skill PackClaudeFast Code Kit
Specialist agent libraryAdd wshobson/agents (33k) separately18 agents pre-wired
Domain skill files1 to 1,340 per pack167 across 21 categories
Production hooksBuild yourself5 ship configured
Skill activation per promptManualAutomated via hook
Context recovery before compactionManualContextRecoveryHook ships
Plan-then-execute pipelineBuild yourself/team-plan + /build ships
Agent Teams workflow integrationBuild yourselfNative support
Time to working system (median)2 to 5 days assembly30-second extract
Lifetime updatesPer-pack maintenanceIncluded
CostFree (your time)One-time purchase

When the Standalone Path Wins

Three honest scenarios where standalone packs are the right choice:

  1. You're researching the ecosystem. Reading shanraisshan/claude-code-best-practice (32.3k stars) and anthropics/skills before installing anything is high-leverage.
  2. You need exactly one opinion. Adopting only superpowers' TDD methodology and writing the rest gives you a tight, custom system.
  3. You're building your own product. If you're shipping a Claude Code starterkit, you need the granular skill packs to learn from, not someone else's bundle.

When the Integrated Path Wins

Five scenarios where the math favors ClaudeFast Code Kit:

  1. You're shipping a product, not assembling tools. Every hour spent wiring hooks is an hour not spent shipping.
  2. You want hook automation today, not next week. Hooks like ContextRecovery and PermissionHook take days to write well. ClaudeFast Code Kit ships them tested.
  3. You need specialist agents that match your stack. wshobson/agents (33k) gives you generic frontend/backend agents. ClaudeFast Code Kit's frontend-specialist comes pre-wired with React skills (51 files of Vercel Engineering rules), Supabase patterns, and Next.js conventions.
  4. You want the /team-plan + /build pipeline. No standalone pack ships this end-to-end. Building it requires custom slash commands plus agent routing plus task dependency chains.
  5. You don't want to maintain it. Standalone packs require you to track upstream changes across 5+ repos. ClaudeFast Code Kit ships one update channel.

What Most Teams Actually Do

A recurring pattern from teams that tried both:

  • Week 1: Install superpowers + wshobson/agents + 3 marketing skills
  • Week 2: Realize hooks aren't wired and write SkillActivationHook from scratch
  • Week 3: Hit context limits and write a context recovery script
  • Week 4: Try to build /team-plan and abandon when it gets too complex
  • Week 5: Buy ClaudeFast Code Kit and delete the assembled stack

This is not universal, but it is common. The integrated bundle exists because the assembly step has a real cost most teams underestimate before they hit it.

How to Pick

Three honest defaults:

On a research budget? Read shanraisshan/claude-code-best-practice and anthropics/skills. Don't install anything yet.

Building a one-person product? Either path works. Choose ClaudeFast Code Kit if you want to start shipping today, or pick superpowers + write the missing layers if you enjoy the assembly process.

Building with a team? ClaudeFast Code Kit. Standardizing 18 agents and 167 skills across multiple engineers manually is a multi-week project. ClaudeFast Code Kit gives you the standard out of the box.

The Claude Code skill ecosystem will keep growing. Whether you assemble standalone packs or buy an integrated system, what matters is shipping. Most teams overspend on assembly and underspend on the work the assembly was supposed to enable.

Last updated on

Claude Fast Shopify Kit
New

Shopify Kit just dropped

Your in-house Shopify x Claude team for Growth, CRO, Paid ads, retention, SEO, ops and Media gen.

Learn more