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.
/plugin marketplace add anthropics/skills- Go to Settings > Capabilities
- Enable Skills toggle
- Browse available skills or upload custom skills
- For Team/Enterprise: Admin must enable Skills organization-wide first
# Install skills from marketplace
/plugin marketplace add anthropics/skills
# Or install from local directory
/plugin add /path/to/skill-directorySkills 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 detailsSkills 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
- 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
- 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
- brand-guidelines - Apply Anthropic's official brand colors and typography to artifacts
- internal-comms - Write internal communications like status reports, newsletters, and FAQs
- skill-creator - Interactive skill creation tool that guides you through building new skills with Q&A
Warning
Skills can execute arbitrary code in Claude's environment.
See Security & Best Practices for more information
-
obra/superpowers - Core skills library for Claude Code with 20+ battle-tested skills including TDD, debugging, and collaboration patterns
- Features
/brainstorm,/write-plan,/execute-plancommands 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
- Features
-
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-marketplaceplugin
These will be broken down into categories once there are enough community skills available to list
| Skill | Description | Verification |
|---|---|---|
| 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 | ⏳ |
More community skills coming soon! Submit a PR to add your skill.
- yusufkaraaslan/Skill_Seekers - Convert documentation websites into Claude Skills
Step-by-Step Guide
The easiest way to create a skill is to use the built-in skill-creator:
- Enable the skill-creator skill in Claude
- Ask Claude: "Use the skill-creator to help me build a skill for [your task]"
- Answer the interactive questions about your workflow
- Claude generates the complete skill structure for you
-
Create folder structure:
my-skill/ ├── SKILL.md # Main skill file with frontmatter ├── scripts/ # Optional executable scripts │ └── helper.py └── resources/ # Optional supporting files └── template.json -
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...
-
Add executable scripts (optional):
- Python, JavaScript, or other scripts Claude can execute
- Reference them in your SKILL.md instructions
-
Test locally:
- Install the skill in Claude Code or Claude Desktop
- Test with relevant tasks
- Iterate and refine
-
Share:
- Publish to GitHub
- Submit to this awesome list via PR
- Share with your team via git repos or internal distribution
- 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
- What are Skills? - Official support article explaining Claude Skills
- Using Skills in Claude - How to enable and use skills
- Claude Skills Announcement - Official announcement from Anthropic
- Equipping Agents with Skills - Engineering deep dive on Agent Skills
- Claude Developer Platform - Official documentation
- Skills API Endpoint -
/v1/skillsAPI documentation
- anthropics/skills - Official public repository for Skills
- Claude Cookbooks - Skills - Example notebooks and tutorials
- Oct 18: Major community repositories emerge: obra/superpowers skills library
- Oct 17: Community publishes practical tutorials on DEV.to and Medium
- Oct 16: 🎉 Claude Skills officially announced - Available across Claude.ai, Code, and API
- Oct 16: Initial skills released including docx, pdf, pptx, xlsx, algorithmic-art, canvas-design, and more
| 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.
| 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 |
Key Advantage: Skills are loaded on-demand, consuming only 30-50 tokens until needed, keeping Claude fast while providing specialized expertise.
- How to Create Your First Claude Skill - Step-by-step tutorial with examples
- How to Use Skills in Claude Code - Installation, project scoping, and testing guide
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
- Simon Willison: Claude Skills are awesome, maybe a bigger deal than MCP - Technical deep dive and analysis
Security Guidelines & Best Practices
- 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
- 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
- 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
- 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
Known Issues & Common Problems
-
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
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
nameanddescriptionfields 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
Common Questions
Q: How much do skills impact token usage?
A: Skills are highly efficient. Each skill only uses 30-50 tokens until it's loaded. The full skill content only loads when Claude determines it's relevant to the task.
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.
What makes Skills powerful?
Composable - Skills stack together automatically. Claude identifies which skills are needed and coordinates their use without manual intervention.
Portable - Skills use the same format everywhere. Build once, use across Claude.ai, Claude Code CLI, Claude API, and custom agents.
Efficient - Claude only loads what's needed, when it's needed. Each skill uses just 30-50 tokens until loaded, keeping Claude fast.
Powerful - Skills can include executable code for tasks where traditional programming is more reliable than token generation.
Common scenarios where Skills excel
- Document workflows: Excel formulas, PowerPoint branding, contract reviews
- Development: API integrations via MCP, automated web app testing
- Communications: Consistent internal messaging, branded visual content
- Specialized tasks: Legal policy compliance, company style guides
Contributions welcome! See contribution guidelines for details. To add a skill or resource: fork, add to appropriate section, submit PR.