Sandbox
@karanb192/awesome-claude-skills

Claude Skills collection for Claude Code and Claude.ai

This repository is an awesome list of Claude Skills, organized by task and verified source. It helps builders find skills for testing, debugging, documents, collaboration, and more, then install the ones they want from the linked repos.

508 stars267 forksUpdated 15d ago
Who it's for

Builders who want to browse and install reusable Claude Skills for Claude Code, Claude.ai, or the API.

What it delivers

You can quickly find a skill for the task you need instead of searching across random repos.

What it does

Verified skill list

Curates 50+ skills with source links and verification status.

Task-based categories

Groups skills into document processing, testing, debugging, workflow, architecture, security, docs, media, data, finance, writing, and meta skills.

Install guidance

Shows how to clone skills into `~/.claude/skills/` and how manual installation works.

Skills comparison

Explains when to use Skills, MCP servers, or system prompts.

Featured collections

Highlights collections like `obra/superpowers` and `anthropics/skills` for broader reuse.

How to get it

  1. 1Get 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!
  2. 2Run
    # 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
  3. 3Verify installation
    # Check if skill is loaded
    ls ~/.claude/skills/
    
    # Skills load automatically - just start using Claude!

README

awesome-claude-skills

The definitive collection of Agent Skills for Claude - supercharge your AI workflows across Claude Code, Claude.ai, and API

Awesome MIT License Skills Count PRs Welcome Verified Updated

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 GuideLooking for something specific? Use Ctrl+F to search • Want to contribute? Check Contributing

Contents

Quick Start

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.

What are Skills?

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:

  • Efficient: Skills use only 30-50 tokens until loaded
  • Portable: Works across Claude Code CLI, Claude.ai, and API
  • Composable: Stack multiple skills together
  • Context-aware: Claude automatically identifies relevant skills

Skills are available on Claude Pro, Max, Team, and Enterprise plans with code execution enabled.

Featured Skills

Start with these top 10 essential skills:

SkillWhy You Need ItCategoryVerified
test-driven-developmentWrite bulletproof code with RED-GREEN-REFACTOR workflow🧪 Testing
systematic-debuggingFind bugs 10x faster with 4-phase root cause analysis🐛 Debugging
using-git-worktreesWork on multiple features simultaneously without context switching🤝 Workflow
mcp-builderBuild custom MCP servers to extend Claude's capabilities⚙️ Development
pdfExtract text, tables, metadata from PDFs with merge & annotation support📄 Documents
docxCreate, edit, and analyze Word documents with tracked changes📄 Documents
artifacts-builderBuild complex React artifacts with Tailwind CSS and shadcn/ui⚙️ Development
skill-creatorCreate your own skills and contribute to the ecosystem🎯 Meta
requesting-code-reviewPre-review preparation with formatted diffs and clear PR descriptions🤝 Workflow
subagent-driven-developmentQuality-gated iteration with multi-agent workflows for complex tasks🎯 Meta

How to Install Skills

Method 1: Git Clone (Recommended)

# 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!

Method 2: Manual Installation

  1. Create a folder in ~/.claude/skills/
  2. Add a SKILL.md file with YAML frontmatter and instructions
  3. (Optional) Include supporting scripts and resources

Verify installation:

# Check if skill is loaded
ls ~/.claude/skills/

# Skills load automatically - just start using Claude!

Skills vs MCP vs System Prompts

Confused about when to use Skills vs other Claude customization methods? Here's the breakdown:

FeatureSkillsMCP ServersSystem Prompts
PurposeTask-specific workflowsExternal tool integrationGeneral behavior modification
SetupGit clone to ~/.claude/skills/Install & configure MCP serverEdit CLAUDE.md in project
ActivationAutomatic (context-aware)Explicit tool callsAlways active
Best ForTDD, debugging, git workflowsAPIs, databases, file systemsProject conventions, style guides
PortabilityCross-platform (CLI, web, API)Platform-dependentProject-specific
Token Cost30-50 until loadedPer-callAlways consuming tokens
Examplestest-driven-developmentWeather API, GitHub integration"Use TypeScript strict mode"

When to use what:

  • Skills → Repeatable workflows (TDD, debugging, code review)
  • MCP → External data/tools (APIs, search, databases)
  • System Prompts → Project-specific rules and conventions

Skill Categories

📄 Document & File Processing

pdf

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: ⭐⭐⭐⭐⭐

docx

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: ⭐⭐⭐⭐⭐

xlsx

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: ⭐⭐⭐⭐⭐

pptx

Source: anthropics/skills | Verified:Description: PowerPoint presentation creation with templates, charts, and multimedia integration. Use Case: Automated slide generation, presentation analysis, template customization Stars: ⭐⭐⭐⭐


🧪 Testing & Quality

test-driven-development

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: ⭐⭐⭐⭐⭐

webapp-testing

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: ⭐⭐⭐⭐

condition-based-waiting

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: ⭐⭐⭐⭐

testing-anti-patterns

Source: obra/superpowers | Verified:Description: Identifies common testing mistakes: brittle assertions, test interdependence, poor isolation Use Case: Code reviews, refactoring existing test suites Stars: ⭐⭐⭐

e2e-testing-skill

Status: Community-needed Description: End-to-end test automation across multiple services and browser environments. Use Case: Integration testing, cross-browser compatibility validation

snapshot-testing

Status: Community-needed Description: Visual regression testing with component snapshot management. Use Case: Component libraries, design system maintenance


🐛 Debugging & Troubleshooting

agenttrace-session-audit

Source: luoyuctl/agenttrace Description: Audits agent sessions for cost, tokens, failures, and latency. Use Case: Debugging Claude Code, Codex, Gemini, Aider, and Cursor runs. Stars: ⭐⭐⭐

systematic-debugging

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: ⭐⭐⭐⭐⭐

root-cause-tracing

Source: obra/superpowers | Verified:Description: Deep problem investigation with dependency chain analysis. Use Case: Tracing cascading failures, understanding system interactions Stars: ⭐⭐⭐⭐

verification-before-completion

Source: obra/superpowers | Verified:Description: Ensures fixes are validated before marking work complete. Use Case: Bug fixes, refactoring work, feature additions Stars: ⭐⭐⭐⭐

defense-in-depth

Source: obra/superpowers | Verified:Description: Multiple validation layers for comprehensive error handling. Use Case: Critical systems, production code, API endpoints Stars: ⭐⭐⭐

performance-profiling

Status: Community-needed Description: Identify performance bottlenecks, memory leaks, and CPU-intensive operations. Use Case: Optimization work, scaling applications, investigating slowness


🤝 Collaboration & Workflow

ax-extract-workflow

Source: Necmttn/ax | Verified:Description: Reconstructs shipped-feature workflows from local ax session history. Use Case: Replaying the decisions and handoffs behind a finished feature Stars: ⭐⭐⭐

requesting-code-review

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: ⭐⭐⭐⭐⭐

receiving-code-review

Source: obra/superpowers | Verified:Description: Constructive feedback integration and iteration on review comments. Use Case: Responding to PR feedback, implementing requested changes Stars: ⭐⭐⭐⭐

using-git-worktrees

Source: obra/superpowers | Verified:Description: Parallel development branches for context switching optimization. Use Case: Juggling multiple features, emergency hotfixes, experimental branches Stars: ⭐⭐⭐⭐⭐

finishing-a-development-branch

Source: obra/superpowers | Verified:Description: Guides merge/PR decisions and maintaining clean git history. Use Case: Preparing features for merge, cleaning up commit history Stars: ⭐⭐⭐⭐

brainstorming

Source: obra/superpowers | Verified:Description: Socratic design refinement and feature exploration through guided questioning. Use Case: Architecture decisions, API design, feature planning Stars: ⭐⭐⭐⭐

writing-plans

Source: obra/superpowers | Verified:Description: Creates detailed implementation strategies and architecture documentation. Use Case: Complex features, system design, technical specs Stars: ⭐⭐⭐⭐⭐

executing-plans

Source: obra/superpowers | Verified:Description: Batch execution with checkpoints for progress tracking and recovery. Use Case: Large refactors, multi-step implementations Stars: ⭐⭐⭐⭐

pr-review

Source: priyank766/OpenSource-SKILL | Verified:Description: Detection-first pull request review; a weighted 10-point filter keeps only the 2-3 findings worth a comment. Use Case: Reviewing open-source PRs as a maintainer without burying the author in nits Stars: ⭐⭐⭐


⚙️ Development & Architecture

mcp-builder

Source: anthropics/skills | Verified:Description: Create high-quality Model Context Protocol servers for external integrations. Use Case: Building custom MCP servers, extending Claude's capabilities Stars: ⭐⭐⭐⭐⭐

artifacts-builder

Source: anthropics/skills | Verified:Description: Build complex claude.ai HTML artifacts using React, Tailwind CSS, and shadcn/ui. Use Case: Interactive demos, prototypes, data visualizations Stars: ⭐⭐⭐⭐

api-development

Status: Community-needed Description: RESTful API design patterns with OpenAPI/Swagger generation. Use Case: Building backend services, documenting APIs

database-migration

Status: Community-needed Description: Schema version management and safe migration patterns for production. Use Case: Database evolution, schema changes, data migrations

refactoring-patterns

Status: Community-needed Description: Code smell detection and systematic refactoring techniques. Use Case: Legacy code modernization, improving code quality


🔒 Security & Performance

security-review

Status: Community-needed Description: Automated vulnerability scanning and OWASP compliance checks. Use Case: Security audits, pre-deployment checks, compliance validation

dependency-audit

Status: Community-needed Description: Supply chain security analysis with CVE detection in dependencies. Use Case: Regular security checks, updating vulnerable packages

performance-optimization

Status: Community-needed Description: Algorithmic improvements and resource usage optimization strategies. Use Case: Improving application speed, reducing memory footprint

load-testing

Status: Community-needed Description: Stress testing patterns and performance benchmarking. Use Case: Capacity planning, finding breaking points


📚 Documentation & Automation

process-builder

Source: Castaldo-Solutions/process-builder | Verified:Description: Interviews you about a business process and generates a BPMN swimlane diagram as a .drawio file. Use Case: Process mapping, AS-IS analysis with pain points, TO-BE automation roadmaps Stars: ⭐⭐⭐

documentation-generator

Status: Community-needed Description: Auto-generate API documentation and keep docs synchronized with code. Use Case: Maintaining up-to-date documentation, API references

changelog-automation

Status: Community-needed Description: Conventional commits integration with automated release note generation. Use Case: Release management, version tracking

ci-cd-integration

Status: Community-needed Description: GitHub Actions workflow creation and automated deployment pipelines. Use Case: DevOps automation, continuous delivery


🎬 Media & Content Creation

bria-ai

Source: Bria-AI/bria-skill | Verified:Description: Generate, edit, and remove image backgrounds via the Bria.ai API — text-to-image, natural-language edits, transparent PNGs. Use Case: Hero images, product photos, icons, and cutouts for web, e-commerce, and marketing pipelines Stars: ⭐⭐⭐⭐

canvas-design

Source: Community | Verified:Description: Create visual designs and graphics using Claude's canvas capabilities. Use Case: Quick mockups, diagrams, visual brainstorming Stars: ⭐⭐⭐

slack-gif-creator

Source: Community | Verified:Description: Generate custom GIFs for Slack communication and team engagement. Use Case: Team communication, visual humor, notifications Stars: ⭐⭐

algorithmic-art

Source: Community | Verified:Description: Generate procedural art and visualizations using code-based techniques. Use Case: Creative coding, data visualization, generative design Stars: ⭐⭐⭐

video-editing-helper

Status: Community-needed Description: Assist with video editing workflows, ffmpeg commands, and transitions. Use Case: Video production, content creation, media processing


📊 Data & Analysis

claude-ecom

Source: takechanman1228/claude-ecom | Verified:Description: Ecommerce business review: turn order CSVs into KPI trees, ~30 health checks, RFM cohorts, and action plans across 30d/90d/365d Use Case: Monthly D2C business reviews, revenue/retention/margin diagnostics, automated consultant-quality analysis Stars: ⭐⭐⭐

data-visualization

Status: Community-needed Description: Create charts, graphs, and interactive visualizations from datasets. Use Case: Data exploration, reporting, presentation of insights

sql-query-builder

Status: Community-needed Description: Generate optimized SQL queries with proper indexing and performance tuning. Use Case: Database queries, data extraction, performance optimization

csv-processing

Status: Community-needed Description: Parse, transform, and analyze CSV files with data cleaning and validation. Use Case: Data migration, ETL processes, data quality checks


💰 Finance & Tax

itr-wala

Source: karanb192/itr-wala | Verified:Description: Prepares Indian income-tax returns (AY 2026-27): AI reads Form 16/AIS, deterministic Python computes every rupee. Use Case: Filing ITR-1/2/3/4 yourself: both regimes compared, deductions interviewed, portal walkthrough Stars: ⭐⭐⭐

file-itr

Source: shivprime94/file-itr | Verified:Description: The first Indian ITR skill: prompt-driven portal walkthrough with hard-won field notes and AIS research. Use Case: Prompt-based guidance through the income-tax portal for Indian returns Stars: ⭐⭐⭐


✍️ Writing & Research

brand-guidelines

Source: Community | Verified:Description: Maintain and enforce brand voice, style, and messaging consistency. Use Case: Content creation, marketing materials, company communications Stars: ⭐⭐⭐⭐

business-name-fit

Source: Elham-Farajnejad/business-name-fit | Verified:Description: Picks or vets a business name that stays authentic to your culture while working in your target market, via 8 cross-cultural checks. Use Case: Naming a company or product across languages; catching a name that reads well at home but fails abroad Stars: ⭐⭐⭐

internal-comms

Source: Community | Verified:Description: Draft internal communications, memos, and team announcements. Use Case: HR communications, team updates, policy announcements Stars: ⭐⭐⭐

research-assistant

Status: Community-needed Description: Gather, synthesize, and cite sources for research projects. Use Case: Academic research, market analysis, competitive intelligence

technical-writing

Status: Community-needed Description: Create clear technical documentation following industry best practices. Use Case: API docs, user manuals, technical specifications


🎯 Meta Skills

skill-creator

Source: anthropics/skills | Verified:Description: Teaches methods for developing effective skills following best practices. Use Case: Building custom skills, contributing to the ecosystem Stars: ⭐⭐⭐⭐⭐

template-skill

Source: anthropics/skills | Verified:Description: Minimal skeleton for new skill projects with proper structure. Use Case: Starting new skills from scratch Stars: ⭐⭐⭐⭐

writing-skills

Source: obra/superpowers | Verified:Description: Creating skills following best practices with proper YAML frontmatter. Use Case: Contributing new skills, maintaining skill quality Stars: ⭐⭐⭐⭐

sharing-skills

Source: obra/superpowers | Verified:Description: Contributing skills via branches and pull requests to community repositories. Use Case: Open-source contributions, sharing expertise Stars: ⭐⭐⭐

testing-skills-with-subagents

Source: obra/superpowers | Verified:Description: Validating skill quality and effectiveness using subagent-driven testing. Use Case: Quality assurance for skills, debugging skill behavior Stars: ⭐⭐⭐⭐

subagent-driven-development

Source: obra/superpowers | Verified:Description: Quality-gated iteration with multi-agent workflows for complex tasks. Use Case: Large-scale refactoring, parallel development streams Stars: ⭐⭐⭐⭐⭐


Skill Collections

Looking for curated skill bundles? Start with these collections:

CollectionSkillsMaintainerFocus Area
obra/superpowers20+@obraDevelopment workflows & best practices
anthropics/skills10+@anthropicsOfficial skills & document processing
Marketing Skills49@coreyhaines31Marketing: SEO, copywriting, cold email, pricing, CRO, ads, analytics
[JasonColapietro/suede-creator-skills](https://github.com/JasonColapiet

Files in the repo

Repository payload5 top-level entries
  • .github
  • .gitignore
  • CONTRIBUTING.md
  • LICENSE
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More collections

The awesome collection of OpenClaw skills. 5,400+ skills filtered and categorized from the official OpenClaw Skills Registry.🦞

52k

Extracted system prompts from Anthropic - Claude Fable 5.1, Opus 5, Claude Design, Claude Code. OpenAI - ChatGPT GPT-6-Astra, Codex. Google - Gemini 3.8 Flash, 3.1 Pro, Antigravity. xAI - Grok, Grok Bot, Cursor, Kimi and more! Updated regularly.

65k
1 add