SkillAgentSearch skills...

awesome-claude-skills

A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code

Install / Use

npx skills add travisvn/awesome-claude-skills

Installs into whichever agent you are using.

About this skill
🤖

CLAUDE.md

Claude Code project instructions

Quality Score

92/100

Category

Automation

Supported Platforms

Claude Code

Tags

<p align="center"> <a href="https://github.com/travisvn/awesome-claude-skills"> <img alt="Awesome Claude Skills" src="https://pc0o4oduww.ufs.sh/f/crfz5GypRfo0lI4924gMSJKLY6297aVP0zZpilXBvqTbDyrs"/> </a> </p>

Awesome Claude Skills

Awesome Last Updated PRs Welcome

A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows

Claude Skills teach Claude how to perform tasks in a repeatable way

They are specialized folders containing instructions, scripts, and resources that Claude dynamically discovers and loads when relevant to tasks.

How Skills Work

Skills employ a progressive disclosure architecture for efficiency:

  1. Metadata loading (~100 tokens): Claude scans available Skills to identify relevant matches
  2. Full instructions (<5k tokens): Load when Claude determines the Skill applies
  3. Bundled resources: Files and executable code load only as needed

This design allows multiple Skills to remain available without overwhelming Claude's context window.

🚀 Getting Started

Claude.ai Web Interface

  1. Go to Settings > Capabilities
  2. Enable Skills toggle
  3. Browse available skills or upload custom skills
  4. For Team/Enterprise: Admin must enable Skills organization-wide first

Claude Code CLI

# Install skills from marketplace
/plugin marketplace add anthropics/skills

# Or install from local directory
/plugin add /path/to/skill-directory

Claude API

Skills are accessible via the /v1/skills API endpoint. See the Skills API documentation for detailed integration examples.

import anthropic

client = anthropic.Client(api_key="your-api-key")
# See API docs for full implementation details

🎯 Official Skills

Document Skills

Skills for working with complex file formats:

  • docx - Create, edit, and analyze Word documents with support for tracked changes, comments, formatting preservation, and text extraction
  • pdf - Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms
  • pptx - Create, edit, and analyze PowerPoint presentations with support for layouts, templates, charts, and automated slide generation
  • xlsx - Create, edit, and analyze Excel spreadsheets with support for formulas, formatting, data analysis, and visualization

Design & Creative

  • algorithmic-art - Create generative art using p5.js with seeded randomness, flow fields, and particle systems
  • canvas-design - Design beautiful visual art in .png and .pdf formats using design philosophies
  • slack-gif-creator - Create animated GIFs optimized for Slack's size constraints

Development

  • frontend-design - Instructs Claude to avoid "AI slop" or generic aesthetics and to make bold design decisions. Works very well for React & Tailwind.
  • web-artifacts-builder - Build complex claude.ai HTML artifacts using React, Tailwind CSS, and shadcn/ui components
  • mcp-builder - Guide for creating high-quality MCP servers to integrate external APIs and services
  • webapp-testing - Test local web applications using Playwright for UI verification and debugging

Communication

  • brand-guidelines - Apply Anthropic's official brand colors and typography to artifacts
  • internal-comms - Write internal communications like status reports, newsletters, and FAQs

Skill Creation

  • skill-creator - Interactive skill creation tool that guides you through building new skills with Q&A

🌟 Community Skills

[!Warning] Skills can execute arbitrary code in Claude's environment.

See Security & Best Practices for more information

Collections & Libraries

  • obra/superpowers - Core skills library for Claude Code with 20+ battle-tested skills including TDD, debugging, and collaboration patterns

    • Features /brainstorm, /write-plan, /execute-plan commands and skills-search tool
    • superpowers-skills - Community-editable skills repository
    • Blog: Superpowers - Author's overview by Jesse Vincent
    • Installation: /plugin marketplace add obra/superpowers-marketplace
  • obra/superpowers-lab - Experimental skills for Claude Code Superpowers (see above)

    • Uses new techniques that are still being refined and tested (i.e. skills here may change over time)
    • Blog post about its development
    • Install from superpowers-marketplace plugin

Individual Skills

These will be broken down into categories once there are enough community skills available to list

| Skill | Description | | --- | --- | | ios-simulator-skill | iOS app building, navigation, and testing through automation | | ffuf-web-fuzzing | Expert guidance for ffuf web fuzzing during penetration testing, including authenticated fuzzing with raw requests, auto-calibration, and result analysis | | playwright-skill | General-purpose browser automation using Playwright | | claude-d3js-skill | Visualizations in d3.js | | claude-scientific-skills | Comprehensive collection of ready-to-use scientific skills, including working with specialized scientific libraries and databases | | web-asset-generator | Generates web assets like favicons, app icons, and social media images | | loki-mode | Multi-agent autonomous startup system - orchestrates 37 AI agents across 6 swarms to build, deploy, and operate a complete startup from PRD to revenue | | Trail of Bits Security Skills | Security skills for static analysis with CodeQL/Semgrep, variant analysis, code auditing, and vulnerability detection | | frontend-slides | Create animation-rich HTML presentations — from scratch or by converting PowerPoint files | | Expo Skills | Official skills by the Expo team for developing Expo apps | | shadcn/ui | Give Claude Code context on shadcn components as well as pattern enforcement | | get-shit-done | Lightweight meta-prompting, context engineering, and spec-driven development system for Claude Code by TÂCHES |

More community skills coming soon! Submit a PR to add your skill.

Tools

✏️ Creating Your First Skill

<details> <summary><strong>Step-by-Step Guide</strong></summary>

Method 1: Use skill-creator (Recommended)

The easiest way to create a skill is to use the built-in skill-creator:

  1. Enable the skill-creator skill in Claude
  2. Ask Claude: "Use the skill-creator to help me build a skill for [your task]"
  3. Answer the interactive questions about your workflow
  4. Claude generates the complete skill structure for you

Method 2: Manual Creation

  1. Create folder structure:

    my-skill/
    ├── SKILL.md          # Main skill file with frontmatter
    ├── scripts/          # Optional executable scripts
    │   └── helper.py
    └── resources/        # Optional supporting files
        └── template.json
    
  2. Create SKILL.md with frontmatter:

    ---
    name: my-skill
    description: Brief description for skill discovery (keep concise)
    ---
    
    # Detailed Instructions
    
    Claude will read these instructions when the skill is activated.
    
    ## Usage
    Explain how to use this skill...
    
    ## Examples
    Provide clear examples...
    
  3. Add executable scripts (optional):

    • Python, JavaScript, or other scripts Claude can execute
    • Reference them in your SKILL.md instructions
  4. Test locally:

    • Install the skill in Claude Code or Claude Desktop
    • Test with relevant tasks
    • Iterate and refine
  5. Share:

    • Publish to GitHub
    • Submit to this awesome list via PR
    • Share with your team via git repos or internal distribution

Best Practices

  • Keep descriptions concise - The frontmatter description is used for skill discovery
  • Use clear, actionable instructions - Write instructions as if for a human collaborator
  • Include examples - Show specific examples in your SKILL.md
  • Version your skills - Use git tags for version management
  • Document dependencies - List any prerequisites or required packages
  • Test thoroughly - Verify your skill works across different scenarios
</details>

📚 Official Documentation & Resources

Getting Started

Documentation

Repositories & Examples

📅 Recent Updates

November 2025

  • Nov 13: Anthropic publishes Skills Explained - Comprehensive guide covering progressive disclosure architecture, decision matrices for Skills vs Prompts/Subagents/Projects, and best practices

October 2025

  • Oct 18: Major community repositories emerge: obra/superpowers skills library
  • Oct 17: Community publishes practical tutorials on DEV.to and Me

Truncated for display — read the full file on GitHub.

Related Skills

View on GitHub
GitHub Stars15.1k
CategoryAutomation
Updated4mo ago
Forks2.0k

Security Score

86/100

Audited on Apr 28, 2026

1 medium1 info