Loading repository dataβ¦
Loading repository dataβ¦
karanb192 / repository
π― The definitive collection of 50+ verified Awesome Claude Skills for Claude Code, Claude.ai, and API. Boost productivity with TDD, debugging, git workflows, document processing, and more. Community-driven, actively maintained.
The definitive collection of Agent Skills for Claude - supercharge your AI workflows across Claude Code, Claude.ai, and API
Claude just got Skills! This is the definitive collection of 50+ Agent Skills for Claude Code, Claude.ai, and Claude API to boost productivity, enforce best practices, and automate complex workflows.
π― Why this list? Verified skills β | Active maintenance β | Clear use cases β | Community-driven β | 50+ Skills β
π‘ New to Skills? Start with the Quick Start Guide β’ Looking for something specific? Use
Ctrl+Fto search β’ Want to contribute? Check Contributing
Get your first skill running in 30 seconds:
# 1. Install obra's superpowers collection (20+ battle-tested skills)
git clone https://github.com/obra/superpowers ~/.claude/skills/superpowers
# 2. Try test-driven-development skill
# In Claude Code, just say: "Let's use TDD to build a user authentication system"
# Claude will automatically load the TDD skill and guide you through RED-GREEN-REFACTOR!
That's it! Skills load automatically when relevant. No configuration needed.
Agent Skills are modular capabilities that extend Claude's functionality through organized folders containing instructions, scripts, and resources. Each skill teaches Claude how to perform specialized tasks in a repeatable, standardized way.
Key benefits:
Skills are available on Claude Pro, Max, Team, and Enterprise plans with code execution enabled.
Start with these top 10 essential skills:
| Skill | Why You Need It | Category | Verified |
|---|---|---|---|
| test-driven-development | Write bulletproof code with RED-GREEN-REFACTOR workflow | π§ͺ Testing | β |
| systematic-debugging | Find bugs 10x faster with 4-phase root cause analysis | π Debugging | β |
| using-git-worktrees | Work on multiple features simultaneously without context switching | π€ Workflow | β |
| mcp-builder | Build custom MCP servers to extend Claude's capabilities | βοΈ Development | β |
| Extract text, tables, metadata from PDFs with merge & annotation support | π Documents | β | |
| docx | Create, edit, and analyze Word documents with tracked changes | π Documents | β |
| artifacts-builder | Build complex React artifacts with Tailwind CSS and shadcn/ui | βοΈ Development | β |
| skill-creator | Create your own skills and contribute to the ecosystem | π― Meta | β |
| requesting-code-review | Pre-review preparation with formatted diffs and clear PR descriptions | π€ Workflow | β |
| subagent-driven-development | Quality-gated iteration with multi-agent workflows for complex tasks | π― Meta | β |
# Linux/macOS
mkdir -p ~/.claude/skills
git clone https://github.com/owner/skill-name ~/.claude/skills/skill-name
# Windows (PowerShell)
mkdir $env:USERPROFILE\.claude\skills
git clone https://github.com/owner/skill-name $env:USERPROFILE\.claude\skills\skill-name
Pro tip: Clone entire skill collections like obra/superpowers to get 20+ skills at once!
~/.claude/skills/SKILL.md file with YAML frontmatter and instructionsVerify installation:
# Check if skill is loaded
ls ~/.claude/skills/
# Skills load automatically - just start using Claude!
Confused about when to use Skills vs other Claude customization methods? Here's the breakdown:
| Feature | Skills | MCP Servers | System Prompts |
|---|---|---|---|
| Purpose | Task-specific workflows | External tool integration | General behavior modification |
| Setup | Git clone to ~/.claude/skills/ | Install & configure MCP server | Edit CLAUDE.md in project |
| Activation | Automatic (context-aware) | Explicit tool calls | Always active |
| Best For | TDD, debugging, git workflows | APIs, databases, file systems | Project conventions, style guides |
| Portability | Cross-platform (CLI, web, API) | Platform-dependent | Project-specific |
| Token Cost | 30-50 until loaded | Per-call | Always consuming tokens |
| Examples | test-driven-development | Weather API, GitHub integration | "Use TypeScript strict mode" |
When to use what:
Source: anthropics/skills | Verified: β Description: Extract text, tables, metadata from PDFs. Merge documents and add annotations. Use Case: Processing contracts, extracting data from reports, combining PDF files Stars: βββββ
Source: anthropics/skills | Verified: β Description: Create, edit, and analyze Word documents with support for tracked changes and comments. Use Case: Automating document generation, processing feedback, extracting structured data Stars: βββββ
Source: anthropics/skills | Verified: β Description: Excel spreadsheet operations including formulas, charts, pivot tables, and data validation. Use Case: Financial reports, data analysis, automated spreadsheet generation Stars: βββββ
Source: anthropics/skills | Verified: β Description: PowerPoint presentation creation with templates, charts, and multimedia integration. Use Case: Automated slide generation, presentation analysis, template customization Stars: ββββ
Source: obra/superpowers | Verified: β Description: RED-GREEN-REFACTOR cycle: write failing tests, implement code, refactor for quality Use Case: Building new features with strong test coverage guarantees Stars: βββββ
Source: anthropics/skills | Verified: β Description: Playwright-based web app testing for UI verification and debugging Use Case: Testing web UIs, validating user flows, catching visual regressions Stars: ββββ
Source: obra/superpowers | Verified: β Description: Async testing patterns with proper wait conditions to prevent flaky tests Use Case: Testing asynchronous operations, API calls, animations Stars: ββββ
Source: obra/superpowers | Verified: β Description: Identifies common testing mistakes: brittle assertions, test interdependence, poor isolation Use Case: Code reviews, refactoring existing test suites Stars: βββ
Status: Community-needed Description: End-to-end test automation across multiple services and browser environments. Use Case: Integration testing, cross-browser compatibility validation
Status: Community-needed Description: Visual regression testing with component snapshot management. Use Case: Component libraries, design system maintenance
Source: obra/superpowers | Verified: β Description: Four-phase root cause process: reproduce, isolate, identify, verify fix. Use Case: Complex bugs, production issues, multi-component failures Stars: βββββ
Source: obra/superpowers | Verified: β Description: Deep problem investigation with dependency chain analysis. Use Case: Tracing cascading failures, understanding system interactions Stars: ββββ
Source: obra/superpowers | Verified: β Description: Ensures fixes are validated before marking work complete. Use Case: Bug fixes, refactoring work, feature additions Stars: ββββ
Source: obra/superpowers | Verified: β Description: Multiple validation layers for comprehensive error handling. Use Case: Critical systems, production code, API endpoints Stars: βββ
Status: Community-needed Description: Identify performance bottlenecks, memory leaks, and CPU-intensive operations. Use Case: Optimization work, scaling applications, investigating slowness
Source: obra/superpowers | Verified: β Description: Pre-review preparation and PR best practices with formatted diffs. Use Case: Before submitting PRs, preparing for team review Stars: βββββ
Source: obra/superpowers | Verified: β Description: Constructive feedback integration and iteration on review comments. Use Case: Responding to PR feedback, implementing requested changes Stars: ββββ
Source: obra/superpowers | Verified: β Description: Parallel development branches for context switching optimization. Use Case: Juggling multiple features, emerg