travisvn/awesome-claude-skills

★ 15,117⑂ 1,974

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

About travisvn/awesome-claude-skills

travisvn/awesome-claude-skills is an open-source project on GitHub, mainly written in several languages. A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code It currently holds 15,117 stars and 1,974 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the AI Coding Agents board.

GitHub Repository Details

Repository travisvn/awesome-claude-skills · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

https://github.com/travisvn/awesome-claude-skills/blob/HEAD/Awesome Claude Skills

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:

Design & Creative

Development

Communication

Skill Creation

🌟 Community Skills

[!Warning]
Skills can execute arbitrary code in Claude's environment.
See Security & Best Practices for more information

Collections & Libraries

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

Step-by-Step Guide

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

📚 Official Documentation & Resources

Getting Started

Documentation

Repositories & Examples

📅 Recent Updates

November 2025

October 2025

💡 Skills vs Other Approaches

Quick Reference: When to Use What

| Tool | Best For | |------|----------| | Skills | Reusable procedural knowledge across conversations | | Prompts | One-time instructions and immediate context | | Projects | Persistent background knowledge within workspaces | | Subagents | Independent task execution with specific permissions | | MCP | Connecting Claude to external data sources |

Use Skills when: Capabilities should be accessible to any Claude instance. They're portable expertise.

Use Subagents when: You need self-contained agents designed for specific purposes with independent workflows and restricted tool access.

Combined approach: Subagents can leverage Skills for specialized expertise, merging independence with portable knowledge.

Key insight: If you find yourself typing the same prompt repeatedly across multiple conversations, it's time to create a Skill.

Skills vs MCP (Model Context Protocol)

| Feature | Skills | MCP | | -------------------- | --------------------------------------------- | --------------------------------- | | Purpose | Task-specific expertise and workflows | External data/API integration | | Portability | Same format everywhere (Claude.ai, Code, API) | Requires server configuration | | Code Execution | Can include executable scripts | Provides tools/resources | | Token Efficiency | 30-50 tokens until loaded | Varies by implementation | | Best For | Repeatable tasks, document workflows | Database access, API integrations |

Use Together: Skills can create MCP servers! The mcp-builder skill helps build high-quality MCP integrations.

Skills vs System Prompts

| Feature | Skills | System Prompts | | ----------------- | --------------------------------------------------- | --------------------------------- | | Structure | Folder with YAML frontmatter, instructions, scripts | Plain text instructions | | Reusability | Version-controlled, shareable, composable | Copy-paste, conversation-specific | | Loading | On-demand (only when relevant) | Always in context | | Maintenance | Centralized updates | Manual updates per conversation | | Composability | Multiple skills stack automatically | Manual combination |

📖 Tutorials & Guides

Written Tutorials

Video Tutorials

_Video tutorials coming soon! Have a good video about Claude Skills? Submit a PR!_

Example topics we'd love to see
  • Getting started with Claude Skills
  • Building your first custom skill
  • Skills vs MCP comparison
  • Enterprise deployment strategies

📰 Articles & Blog Posts

🔒 Security & Best Practices

⚠️ Important: Skills can execute arbitrary code in Claude's environment. Only install skills from trusted sources.

Security Guidelines & Best Practices

Vetting Skills

  • Only install skills from trusted sources
  • Review SKILL.md and all scripts before enabling a skill
  • Be cautious of skills that request sensitive data access
  • Audit carefully before deploying to production or enterprise environments

Security Concerns

  • Malicious skills may introduce vulnerabilities or enable data exfiltration
  • Prompt injection attacks could be amplified through compromised skills
  • Sandboxing limitations - Understand the security model before enterprise deployment
  • Security research: Weaponizing Claude Code Skills - Analysis of potential security risks

Best Practices

  • Version control - Track all skills in git with proper version tags
  • Code review - Peer review custom skills before team distribution
  • Least privilege - Only grant necessary permissions and access
  • Regular audits - Periodically review installed skills
  • Documentation - Maintain clear documentation for custom skills
  • Testing - Thoroughly test skills in non-production environments first

Enterprise Considerations

  • As of October 2025, Claude.ai does not support centralized admin management for custom skills
  • Use version control and internal repositories for team skill distribution
  • Establish clear policies for skill vetting and approval
  • Monitor skill usage and performance

🛠️ Troubleshooting

Known Issues & Common Problems

Known Issues

  • Linux path bug (Oct 18, 2025): Agent SDK uses hardcoded macOS paths instead of environment home directory
  • Issue #268
  • Workaround: Manually specify skill paths
  • Enterprise distribution: No centralized admin management yet for custom skills on claude.ai
  • Use git repositories for team distribution
  • API integration provides more control

Common Problems

Skills not appearing in Claude

  • Check Settings > Capabilities to ensure Skills are enabled
  • For Team/Enterprise: Verify admin has enabled Skills organization-wide
  • Restart Claude after installing new skills
Skills not loading/activating
  • Verify SKILL.md has proper YAML frontmatter format
  • Check that name and description fields are present
  • Ensure file structure matches expected format
Permission errors
  • Review admin settings for Team/Enterprise accounts
  • Check file permissions in skill directories
  • Verify API key has appropriate permissions
Skill execution failures
  • Check script dependencies are installed
  • Review error logs for specific issues
  • Test scripts independently outside of Claude

Getting Help

❓ FAQ

Common Questions

Q: How much do skills impact token usage?

A: Skills are highly efficient thanks to progressive disclosure. Each skill uses only ~100 tokens during metadata scanning to determine relevance. When activated, the full skill content loads at <5k tokens. Bundled resources only load as needed.

Q: What's the difference between Claude Skills and Agent Skills?

A: They are the same thing.

Q: Can I share skills with my team?

A: Yes! Skills can be shared via:

  • Git repositories (recommended)
  • Internal file sharing
  • Claude API for programmatic distribution
  • Enterprise-wide deployment features (coming soon)
Q: Do skills work with all Claude models?

A: Skills are available for Pro, Max, Team, and Enterprise users. Free tier users do not have access to Skills.

Q: Can skills call external APIs?

A: Yes, skills can include scripts that call external APIs. For complex API integrations, consider using MCP (Model Context Protocol) alongside skills.

Q: How does Claude decide which skill to use?

A: Claude scans all available skills' frontmatter (name and description), evaluates relevance to the current task, then loads the full content of relevant skills. Multiple skills can be loaded and composed together automatically.

Q: Can I use Skills and MCP together?

A: Absolutely! They complement each other. Use Skills for task-specific workflows and MCP for external data/API integration. The mcp-builder skill can even help you build MCP servers.

Q: Are there any costs beyond my Claude subscription?

A: No additional costs for using official skills. Community and custom skills are free to use, though some may require external services (APIs, databases, etc.) that have their own costs.

Q: Can I monetize custom skills?

A: Currently, there is no official marketplace for paid skills. Anthropic has mentioned plans for community contributions and a potential marketplace in the future.

Q: How do I update a skill?

A: For skills from git repositories, pull the latest changes. For manually installed skills, replace the skill folder with the updated version. Always test updates in a non-production environment first.

🤝 Contributing

Contributions welcome! See contribution guidelines for details. To add a skill or resource: fork, add to appropriate section, submit PR.

GitHub Stars & Activity

15,117Stars
1,974Forks
0Open issues
-Language

GitHub Popularity

GitHub stars15,117
Forks1,974
Open issues0
Primary language-
License-
Stars gained today0
Created-
Last pushed-

Trending History

Trending statusnot on today's boards

Related AI Projects

1

affaan-m / ECC

JavaScript★ 263,266⑂ 39,395
2

NousResearch / hermes-agent

Python★ 247,332⑂ 51,995
3

DietrichGebert / ponytail

JavaScript★ 142,817⑂ 7,659
4

farion1231 / cc-switch

Rust★ 133,792⑂ 9,235
5

nextlevelbuilder / ui-ux-pro-max-skill

Python★ 129,212⑂ 13,768
6

Graphify-Labs / graphify

Python★ 119,763⑂ 11,574
7

JuliusBrussee / caveman

Go★ 106,886⑂ 6,182
8

addyosmani / agent-skills

JavaScript★ 97,395⑂ 10,274

More AI Rankings