Claude Skills

A community-curated collection of specialized Agent Skills for Claude AI.

<p align="center"> <img src="https://img.shields.io/badge/Agent_Skills-Standard-blueviolet?style=for-the-badge" alt="Agent Skills" /> <img src="https://img.shields.io/badge/Format-SKILL.md-00B4D8?style=for-the-badge" alt="SKILL.md" /> <img src="https://img.shields.io/badge/Maintained-Active-brightgreen?style=for-the-badge" alt="Maintained" /> <img src="https://img.shields.io/badge/PRs-Welcome-orange?style=for-the-badge" alt="PRs Welcome" /> <img src="https://img.shields.io/badge/License-CC0%201.0-lightgrey?style=for-the-badge" alt="License" /> </p> <h1 align="center">🤖 Claude Skills</h1> <p align="center"> <strong>A community-curated collection of Agent Skills for Claude AI</strong> <br /> <em>Following the official <a href="https://agentskills.io/specification">Agent Skills Standard</a> (SKILL.md format)</em> </p> <p align="center"> <a href="https://aiagentbase.app/skills">🌐 Browse & Deploy on AiAgentBase</a> • <a href="#-how-to-contribute">🤝 Contribute</a> • <a href="#-skill-catalog">📂 Catalog</a> • <a href="https://agentskills.io">📋 Agent Skills Spec</a> </p>

🚀 Want 1-Click Deploy & Premium Skills? Visit AiAgentBase.app/skills — The Community-Driven AI Skills Marketplace


📖 What Are Agent Skills?

Agent Skills are folders containing a SKILL.md file with instructions and metadata that teach Claude how to perform specialized tasks. Skills follow the open Agent Skills Standard by Anthropic.

Without Skill:  Generic AI → Average output
With Skill:     Expert Python Developer → Production-grade code ✨

Skill Format

Each skill is a folder with a SKILL.md file:

skill-name/
├── SKILL.md          # Required: YAML frontmatter + instructions
├── scripts/          # Optional: executable code
├── references/       # Optional: documentation
└── assets/           # Optional: templates, resources
---
name: skill-name
description: What it does and when to use it
license: CC0-1.0
metadata:
  author: github-username
  version: "1.0"
---

# Instructions for Claude go here

📂 Skill Catalog

💻 Coding & Development

SkillDescriptionAuthorLicense
senior-python-developerExpert Python coding with type hints, async, testing & clean architectureskillsdirectoryCC0-1.0
nextjs-expertNext.js 14+ App Router, RSC, Server Actions, TypeScriptskillsdirectoryCC0-1.0
code-reviewerThorough code reviews for bugs, security & performanceskillsdirectoryCC0-1.0
sql-query-expertOptimized SQL with CTEs, window functions & performance tuningAnthropicMIT

🤖 AI Engineering (sourced from Anthropic — MIT License)

SkillDescriptionAuthorLicense
rag-specialistRAG pipelines with vector DBs, embeddings & grounded responsesAnthropicMIT
tool-use-architectDesign tool-calling patterns with error handling & orchestrationAnthropicMIT
prompt-engineerMaster prompt design with CoT, few-shot, classification & cachingAnthropicMIT
content-moderatorAI content moderation with severity scoring & policy enforcementAnthropicMIT

✍️ Writing & Content

SkillDescriptionAuthorLicense
seo-blog-writerSEO-optimized blog posts with keyword strategy & structureskillsdirectoryCC0-1.0
technical-writerClear technical docs with API references & tutorialsskillsdirectoryCC0-1.0

📊 Business & Finance

SkillDescriptionAuthorLicense
business-plan-writerInvestor-ready business plans with financial projectionsskillsdirectoryCC0-1.0
market-research-analystDeep market analysis with competitor insights & TAM sizingskillsdirectoryCC0-1.0
financial-data-analystFinancial data analysis with metrics, trends & visualizationsAnthropicMIT

📈 Data & Visualization

SkillDescriptionAuthorLicense
data-visualizerChoose the right charts, colors & layouts for data storytellingAnthropicMIT

🎨 Design & UX

SkillDescriptionAuthorLicense
ui-ux-advisorDesign feedback with accessibility, usability & modern patternsskillsdirectoryCC0-1.0

🛡️ DevOps & Security

SkillDescriptionAuthorLicense
devops-engineerDocker, K8s, CI/CD pipelines & cloud infrastructureskillsdirectoryCC0-1.0
security-auditorOWASP Top 10 analysis, vulnerability scanning & remediationskillsdirectoryCC0-1.0

💬 Support

SkillDescriptionAuthorLicense
customer-support-agentAI customer support with ticket routing & empathetic responsesAnthropicMIT

🔧 How to Use These Skills

In Claude Code

# Clone this repo locally
git clone https://github.com/skillsdirectory/claude-skills.git

# Reference a skill in your project
# Claude will automatically detect SKILL.md files in your project
cp -r claude-skills/skills/senior-python-developer ./skills/

In Claude.ai

  1. Go to Project SettingsSkills
  2. Upload the SKILL.md file from any skill folder
  3. Claude will now follow those instructions

In Claude API

Use the Skills API to attach skills to your conversations programmatically.


📈 Stats

MetricCount
Total Skills17
Categories8
Original (CC0-1.0)10
Anthropic-sourced (MIT)7
FormatAgent Skills Standard (SKILL.md)
Specagentskills.io

🤝 How to Contribute

We welcome community skills! Follow the official Agent Skills Standard.

Quick Steps

  1. Star this repo (helps others find it!)
  2. 🍴 Fork this repository
  3. 📁 Create a folder in skills/ with your skill name (lowercase, hyphens)
  4. 📝 Add a SKILL.md file following the template
  5. 📤 Submit a Pull Request

👉 Full guidelines: CONTRIBUTING.md

SKILL.md Template

---
name: your-skill-name
description: Clear description of what this skill does and when to use it
license: CC0-1.0
metadata:
  author: your-github-username
  version: "1.0"
  category: coding
---

# Your Skill Name

[Detailed instructions for Claude]

Naming Rules (from agentskills.io spec)

  • ✅ Lowercase only: senior-python-developer
  • ✅ Hyphens for spaces: seo-blog-writer
  • ✅ 1-64 characters
  • ❌ No uppercase: Senior-Python
  • ❌ No consecutive hyphens: seo--blog
  • ❌ Can't start/end with hyphen: -python-

🔗 Related Projects

ProjectDescription
anthropics/skillsOfficial Anthropic skills repository
agentskills.ioAgent Skills specification
awesome-ai-skillsSkills for all AI tools (Cursor, Windsurf, Copilot)
mcp-servers-hubMCP servers directory

📄 License

This repository contains skills under two licenses:

  • Original skills (by skillsdirectory) → CC0 1.0 Universal — free to use, modify, and share
  • Anthropic-sourced skillsMIT License — requires attribution to Anthropic, PBC

ℹ️ Skills sourced from Anthropic's open-source repositories are clearly marked with license: MIT in their SKILL.md frontmatter and include a LICENSE.txt file with the original MIT license and source attribution.


⚖️ Disclaimer

This is an independent, community-maintained project.

  • This repository is NOT affiliated with, endorsed by, sponsored by, or associated with Anthropic, PBC or any of its products, including Claude, Claude Code, or Claude API.
  • "Claude" and "Anthropic" are trademarks of Anthropic, PBC. Use of these names in this repository is solely for the purpose of describing compatibility and is considered nominative fair use.
  • The Agent Skills Standard and agentskills.io specification is an open standard. This repository implements that standard independently.
  • Some skills in this repository are adapted from Anthropic's open-source projects (claude-cookbooks, claude-quickstarts) under the MIT License. Original authors are credited in each skill's SKILL.md frontmatter and LICENSE.txt file.
  • Original community skills are licensed under CC0 1.0. Anthropic-sourced skills retain their MIT License.
  • References to any third-party products, services, or companies (including but not limited to Anthropic, OpenAI, Google, Microsoft, Cursor, Windsurf, GitHub Copilot, VS Code) are for informational and compatibility purposes only and do not imply any affiliation, endorsement, or sponsorship.
  • This repository and its maintainers make no warranties regarding the quality, accuracy, or fitness of any skills listed herein. Use at your own risk.
  • Individual contributors are responsible for the content they submit. Maintainers review submissions but do not guarantee their correctness.

<p align="center"> <strong>🌟 Found this useful? Give us a ⭐ Star!</strong> <br /><br /> <a href="https://aiagentbase.app/skills"> <img src="https://img.shields.io/badge/🚀_Explore_Skills_Marketplace-AiAgentBase.app-FF6B35?style=for-the-badge" alt="AiAgentBase" /> </a> </p>