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-skillsGuides for using ai agents skills like awesome-claude-skills.
Last scanned: 4/17/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-04-17T06:06:21.727Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}awesome-claude-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by travisvn. A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code. It has 14,062 GitHub stars.
Yes. awesome-claude-skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/travisvn/awesome-claude-skills" and add it to your Claude Code skills directory (see the Installation section above).
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh awesome-claude-skills against similar tools.
No comments yet. Be the first to share your thoughts!
Based on votes and bookmarks from developers who liked this skill
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.
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
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 |
| 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.
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: