by travisvn
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code
# Add to your Claude Code skills
git clone https://github.com/travisvn/awesome-claude-skillsA 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.
Skills employ a progressive disclosure architecture for efficiency:
This design allows multiple Skills to remain available without overwhelming Claude's context window.
# Install skills from marketplace
/plugin marketplace add anthropics/skills
# Or install from local directory
/plugin add /path/to/skill-directory
No comments yet. Be the first to share your thoughts!
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
Skills for working with complex file formats:
[!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
/brainstorm, /write-plan, /execute-plan commands and skills-search tool/plugin marketplace add obra/superpowers-marketplaceobra/superpowers-lab - Experimental skills for Claude Code Superpowers (see above)
superpowers-marketplace pluginThese 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 |
More community skills coming soon! Submit a PR to add your skill.
The easiest way to create a skill is to use the built-in skill-creator:
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):
Test locally:
Share: