chore: update README
This commit is contained in:
228
README.md
228
README.md
@@ -1,2 +1,226 @@
|
||||
# awesome-claude-skills
|
||||
Claude AI skills, tools, and integrations for building advanced AI agents and workflows.
|
||||
<a href="https://github.com/VoltAgent/voltagent">
|
||||
<img alt="Group 32" src="" />
|
||||
</a>
|
||||
|
||||
<br />
|
||||
<br/>
|
||||
|
||||
<div align="center">
|
||||
<strong>A collection of Claude Skills, articles, tutorials, and videos from Anthropic and the community.</strong>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](https://s.voltagent.dev/discord)
|
||||
[](https://twitter.com/voltagent_dev)
|
||||
|
||||
</div>
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
# Awesome Claude Skills
|
||||
|
||||
Claude Skills are folders with instructions, scripts, and resources that teach Claude specific tasks. Skills can include executable code and are loaded only when needed, allowing you to maintain hundreds without performance impact. Multiple skills can run together for complex tasks like document creation, code testing, and data analysis.
|
||||
|
||||
### Creating a Skill
|
||||
|
||||
**Requirements**
|
||||
|
||||
- A folder with a `Skill.md` file
|
||||
- YAML frontmatter: `name` (max 64 chars), `` (max 200 chars)
|
||||
- Optional: `version`, `dependencies`
|
||||
|
||||
**File Structure**
|
||||
|
||||
```markdown
|
||||
---
|
||||
name: api-tester
|
||||
: Test REST APIs and validate responses
|
||||
version: 1.0.0
|
||||
---
|
||||
|
||||
# API Tester
|
||||
|
||||
Test HTTP endpoints and validate response structures.
|
||||
|
||||
## When to Use This Skill
|
||||
|
||||
Use this skill when you need to test API endpoints and verify response data.
|
||||
|
||||
## Instructions
|
||||
|
||||
When testing an API:
|
||||
|
||||
1. Send a request to the specified endpoint
|
||||
2. Check the response status code
|
||||
3. Validate the response body structure
|
||||
4. Report any errors or unexpected results
|
||||
|
||||
## Response Validation
|
||||
|
||||
- Verify required fields exist
|
||||
- Check data types match expected values
|
||||
- Confirm nested objects have correct structure
|
||||
```
|
||||
|
||||
See the [official repo](https://github.com/anthropics/skills) and [creation guide](https://support.claude.com/en/articles/12512198-how-to-create-custom-skills) for more details.
|
||||
|
||||
|
||||
Use it to find skills or as inspiration for creating your own.
|
||||
|
||||
## Official Claude Skills
|
||||
|
||||
### Document Creation
|
||||
|
||||
| Skill | | Description |
|
||||
| --------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------- |
|
||||
| [**docx**](https://github.com/anthropics/skills/tree/main/docx) | [](https://github.com/anthropics/skills/tree/main/docx) | Create, edit, and analyze Word documents |
|
||||
| [**pptx**](https://github.com/anthropics/skills/tree/main/pptx) | [](https://github.com/anthropics/skills/tree/main/pptx) | Create, edit, and analyze PowerPoint presentations |
|
||||
| [**xlsx**](https://github.com/anthropics/skills/tree/main/xlsx) | [](https://github.com/anthropics/skills/tree/main/xlsx) | Create, edit, and analyze Excel spreadsheets |
|
||||
| [**pdf**](https://github.com/anthropics/skills/tree/main/pdf) | [](https://github.com/anthropics/skills/tree/main/pdf) | Extract text, create PDFs, and handle forms |
|
||||
|
||||
### Creative and Design
|
||||
|
||||
| Skill | | Description |
|
||||
| ----------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
|
||||
| [**algorithmic-art**](https://github.com/anthropics/skills/tree/main/algorithmic-art) | [](https://github.com/anthropics/skills/tree/main/algorithmic-art) | Create generative art using p5.js with seeded randomness |
|
||||
| [**canvas-design**](https://github.com/anthropics/skills/tree/main/canvas-design) | [](https://github.com/anthropics/skills/tree/main/canvas-design) | Design visual art in PNG and PDF formats |
|
||||
| [**slack-gif-creator**](https://github.com/anthropics/skills/tree/main/slack-gif-creator) | [](https://github.com/anthropics/skills/tree/main/slack-gif-creator) | Create animated GIFs optimized for Slack size constraints |
|
||||
| [**theme-factory**](https://github.com/anthropics/skills/tree/main/theme-factory) | [](https://github.com/anthropics/skills/tree/main/theme-factory) | Style artifacts with professional themes or generate custom themes |
|
||||
|
||||
### Development
|
||||
|
||||
| Skill | | Description |
|
||||
| ----------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------- |
|
||||
| [**artifacts-builder**](https://github.com/anthropics/skills/tree/main/artifacts-builder) | [](https://github.com/anthropics/skills/tree/main/artifacts-builder) | Build complex claude.ai HTML artifacts with React and Tailwind |
|
||||
| [**mcp-builder**](https://github.com/anthropics/skills/tree/main/mcp-builder) | [](https://github.com/anthropics/skills/tree/main/mcp-builder) | Create MCP servers to integrate external APIs and services |
|
||||
| [**webapp-testing**](https://github.com/anthropics/skills/tree/main/webapp-testing) | [](https://github.com/anthropics/skills/tree/main/webapp-testing) | Test local web applications using Playwright |
|
||||
|
||||
### Branding and Communication
|
||||
|
||||
| Skill | | Description |
|
||||
| --------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
|
||||
| [**brand-guidelines**](https://github.com/anthropics/skills/tree/main/brand-guidelines) | [](https://github.com/anthropics/skills/tree/main/brand-guidelines) | Apply Anthropic's brand colors and typography to artifacts |
|
||||
| [**internal-comms**](https://github.com/anthropics/skills/tree/main/internal-comms) | [](https://github.com/anthropics/skills/tree/main/internal-comms) | Write status reports, newsletters, and FAQs |
|
||||
|
||||
### Meta
|
||||
|
||||
| Skill | | Description |
|
||||
| ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------- |
|
||||
| [**skill-creator**](https://github.com/anthropics/skills/tree/main/skill-creator) | [](https://github.com/anthropics/skills/tree/main/skill-creator) | Guide for creating skills that extend Claude's capabilities |
|
||||
| [**template-skill**](https://github.com/anthropics/skills/tree/main/template-skill) | [](https://github.com/anthropics/skills/tree/main/template-skill) | Basic template for creating new skills |
|
||||
|
||||
## Community Skills
|
||||
|
||||
### Productivity and Collaboration
|
||||
|
||||
| Skill | | Description |
|
||||
| -------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------ |
|
||||
| [**Notion Skills for Claude**](https://www.notion.so/notiondevs/Notion-Skills-for-Claude-28da4445d27180c7af1df7d8615723d0) | - | Skills for working with Notion |
|
||||
| [**superpowers-lab**](https://github.com/obra/superpowers-lab) | [](https://github.com/obra/superpowers-lab) | Lab environment for Claude superpowers |
|
||||
| [**brainstorming**](https://github.com/obra/superpowers/tree/main/skills/brainstorming) | [](https://github.com/obra/superpowers/tree/main/skills/brainstorming) | Generate and explore ideas |
|
||||
| [**writing-plans**](https://github.com/obra/superpowers/tree/main/skills/writing-plans) | [](https://github.com/obra/superpowers/tree/main/skills/writing-plans) | Create strategic documentation |
|
||||
| [**executing-plans**](https://github.com/obra/superpowers/tree/main/skills/executing-plans) | [](https://github.com/obra/superpowers/tree/main/skills/executing-plans) | Implement and run strategic plans |
|
||||
| [**dispatching-parallel-agents**](https://github.com/obra/superpowers/tree/main/skills/dispatching-parallel-agents) | [](https://github.com/obra/superpowers/tree/main/skills/dispatching-parallel-agents) | Coordinate multiple simultaneous agents |
|
||||
| [**sharing-skills**](https://github.com/obra/superpowers/tree/main/skills/sharing-skills) | [](https://github.com/obra/superpowers/tree/main/skills/sharing-skills) | Distribute and communicate capabilities |
|
||||
| [**using-superpowers**](https://github.com/obra/superpowers/tree/main/skills/using-superpowers) | [](https://github.com/obra/superpowers/tree/main/skills/using-superpowers) | Leverage core platform capabilities |
|
||||
| [**csv-data-summarizer**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/csv-data-summarizer) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/csv-data-summarizer) | Analyze and visualize CSV files (by ComposioHQ) |
|
||||
| [**domain-name-brainstormer**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/domain-name-brainstormer) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/domain-name-brainstormer) | Generate and check domain ideas (by ComposioHQ) |
|
||||
| [**lead-research-assistant**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/lead-research-assistant) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/lead-research-assistant) | Identify and qualify business leads (by ComposioHQ) |
|
||||
| [**article-extractor**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/article-extractor) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/article-extractor) | Extract web article content (by ComposioHQ) |
|
||||
| [**content-research-writer**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/content-research-writer) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/content-research-writer) | Enhance writing with research (by ComposioHQ) |
|
||||
| [**meeting-insights-analyzer**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/meeting-insights-analyzer) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/meeting-insights-analyzer) | Analyze meeting communication patterns (by ComposioHQ) |
|
||||
| [**competitive-ads-extractor**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/competitive-ads-extractor) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/competitive-ads-extractor) | Analyze competitor advertising (by ComposioHQ) |
|
||||
| [**family-history-research**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/family-history-research) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/family-history-research) | Genealogy research assistance (by ComposioHQ) |
|
||||
| [**notebooklm-integration**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/notebooklm-integration) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/notebooklm-integration) | Source-based document interaction (by ComposioHQ) |
|
||||
| [**markdown-to-epub-converter**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/markdown-to-epub-converter) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/markdown-to-epub-converter) | Convert markdown to ebook format (by ComposioHQ) |
|
||||
| [**image-enhancer**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/image-enhancer) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/image-enhancer) | Improve image quality (by ComposioHQ) |
|
||||
|
||||
### Development and Testing
|
||||
|
||||
| Skill | | Description |
|
||||
| ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------- |
|
||||
| [**ios-simulator-skill**](https://github.com/conorluddy/ios-simulator-skill) | [](https://github.com/conorluddy/ios-simulator-skill) | Control iOS Simulator (also by ComposioHQ) |
|
||||
| [**ffuf-claude-skill**](https://github.com/jthack/ffuf_claude_skill) | [](https://github.com/jthack/ffuf_claude_skill) | Web fuzzing with ffuf (also by ComposioHQ) |
|
||||
| [**playwright-skill**](https://github.com/lackeyjb/playwright-skill) | [](https://github.com/lackeyjb/playwright-skill) | Browser automation with Playwright (also by ComposioHQ) |
|
||||
| [**test-driven-development**](https://github.com/obra/superpowers/tree/main/skills/test-driven-development) | [](https://github.com/obra/superpowers) | Write tests before implementing code (also by ComposioHQ) |
|
||||
| [**aws-skills**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/aws-skills) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/aws-skills) | AWS development and architecture patterns (by ComposioHQ) |
|
||||
| [**changelog-generator**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/changelog-generator) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/changelog-generator) | Transform git commits into release notes (by ComposioHQ) |
|
||||
| [**d3js-visualization**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/d3js-visualization) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/d3js-visualization) | Generate interactive data charts (by ComposioHQ) |
|
||||
| [**move-code-quality-skill**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/move-code-quality-skill) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/move-code-quality-skill) | Analyze Move language code quality (by ComposioHQ) |
|
||||
| [**pypict-claude-skill**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/pypict-claude-skill) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/pypict-claude-skill) | Generate comprehensive test cases (by ComposioHQ) |
|
||||
| [**skill-seekers**](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/skill-seekers) | [](https://github.com/ComposioHQ/awesome-claude-skills/tree/main/skill-seekers) | Convert documentation to Claude skills (by ComposioHQ) |
|
||||
| [**subagent-driven-development**](https://github.com/obra/superpowers/tree/main/skills/subagent-driven-development) | [](https://github.com/obra/superpowers) | Development using multiple sub-agents |
|
||||
| [**systematic-debugging**](https://github.com/obra/superpowers/tree/main/skills/systematic-debugging) | [](https://github.com/obra/superpowers) | Methodical problem-solving in code |
|
||||
| [**root-cause-tracing**](https://github.com/obra/superpowers/tree/main/skills/root-cause-tracing) | [](https://github.com/obra/superpowers) | Investigate and identify fundamental problems |
|
||||
| [**testing-skills-with-subagents**](https://github.com/obra/superpowers/tree/main/skills/testing-skills-with-subagents) | [](https://github.com/obra/superpowers) | Collaborative testing approaches |
|
||||
| [**testing-anti-patterns**](https://github.com/obra/superpowers/tree/main/skills/testing-anti-patterns) | [](https://github.com/obra/superpowers) | Identify ineffective testing practices |
|
||||
| [**finishing-a-development-branch**](https://github.com/obra/superpowers/tree/main/skills/finishing-a-development-branch) | [](https://github.com/obra/superpowers) | Complete Git code branches |
|
||||
| [**requesting-code-review**](https://github.com/obra/superpowers/tree/main/skills/requesting-code-review) | [](https://github.com/obra/superpowers) | Initiate code review processes |
|
||||
| [**receiving-code-review**](https://github.com/obra/superpowers/tree/main/skills/receiving-code-review) | [](https://github.com/obra/superpowers) | Process and incorporate code feedback |
|
||||
| [**using-git-worktrees**](https://github.com/obra/superpowers/tree/main/skills/using-git-worktrees) | [](https://github.com/obra/superpowers) | Manage multiple Git working trees |
|
||||
| [**verification-before-completion**](https://github.com/obra/superpowers/tree/main/skills/verification-before-completion) | [](https://github.com/obra/superpowers) | Validate work before finalizing |
|
||||
| [**condition-based-waiting**](https://github.com/obra/superpowers/tree/main/skills/condition-based-waiting) | [](https://github.com/obra/superpowers) | Manage conditional pauses or delays |
|
||||
| [**commands**](https://github.com/obra/superpowers/tree/main/skills/commands) | [](https://github.com/obra/superpowers) | Create and manage command structures |
|
||||
| [**writing-skills**](https://github.com/obra/superpowers/tree/main/skills/writing-skills) | [](https://github.com/obra/superpowers) | Develop and document capabilities |
|
||||
|
||||
### Specialized Domains
|
||||
|
||||
| Skill | | Description |
|
||||
| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------- |
|
||||
| [**claude-scientific-skills**](https://github.com/K-Dense-AI/claude-scientific-skills) | [](https://github.com/K-Dense-AI/claude-scientific-skills) | Scientific research and analysis skills |
|
||||
| [**claude-win11-speckit-update-skill**](https://github.com/NotMyself/claude-win11-speckit-update-skill) | [](https://github.com/NotMyself/claude-win11-speckit-update-skill) | Windows 11 system management |
|
||||
| [**claudisms**](https://github.com/jeffersonwarrior/claudisms) | [](https://github.com/jeffersonwarrior/claudisms) | SMS messaging integration |
|
||||
| [**defense-in-depth**](https://github.com/obra/superpowers/tree/main/skills/defense-in-depth) | [](https://github.com/obra/superpowers) | Multi-layered security approaches |
|
||||
|
||||
## Articles and Tutorials
|
||||
|
||||
### 📚 Official
|
||||
|
||||
| Article | | Description |
|
||||
|---------|---|-------------|
|
||||
| [**Claude Skills Quickstart**](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/quickstart) | [](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/quickstart) | Get started with Claude Skills |
|
||||
| [**Claude Skills Best Practices**](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/best-practices) | [](https://docs.claude.com/en/docs/agents-and-tools/agent-skills/best-practices) | Best practices for creating skills |
|
||||
| [**Skills Cookbook**](https://github.com/anthropics/claude-cookbooks/blob/main/skills/README.md) | [](https://github.com/anthropics/claude-cookbooks/blob/main/skills/README.md) | Skills examples and guides |
|
||||
| [**What Are Skills**](https://support.claude.com/en/articles/12512176-what-are-skills) | [](https://support.claude.com/en/articles/12512176-what-are-skills) | Introduction to Claude Skills |
|
||||
| [**Using Skills in Claude**](https://support.claude.com/en/articles/12512180-using-skills-in-claude) | [](https://support.claude.com/en/articles/12512180-using-skills-in-claude) | How to use skills in Claude |
|
||||
| [**How to Create Custom Skills**](https://support.claude.com/en/articles/12512198-how-to-create-custom-skills) | [](https://support.claude.com/en/articles/12512198-how-to-create-custom-skills) | Step-by-step guide to creating skills |
|
||||
| [**Create a Skill Through Conversation**](https://support.claude.com/en/articles/12599426-how-to-create-a-skill-with-claude-through-conversation) | [](https://support.claude.com/en/articles/12599426-how-to-create-a-skill-with-claude-through-conversation) | Create skills by talking to Claude |
|
||||
| [**Claude for Financial Services Skills**](https://support.claude.com/en/articles/12663107-claude-for-financial-services-skills) | [](https://support.claude.com/en/articles/12663107-claude-for-financial-services-skills) | Industry-specific skills for financial services |
|
||||
| [**Equipping Agents for the Real World**](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills) | [](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills) | Technical deep dive into agent skills |
|
||||
| [**Teach Claude Your Way of Working**](https://support.claude.com/en/articles/12580051-teach-claude-your-way-of-working-using-skills) | [](https://support.claude.com/en/articles/12580051-teach-claude-your-way-of-working-using-skills) | Customize Claude with your workflow |
|
||||
|
||||
### 👥 Community
|
||||
|
||||
| Article | | Description |
|
||||
|---------|---|-------------|
|
||||
| [**Simon Willison: Claude Skills**](https://simonwillison.net/2025/Oct/16/claude-skills/) | [](https://simonwillison.net/2025/Oct/16/claude-skills/) | Introduction to Claude Skills |
|
||||
| [**Nick Nisi: Claude Skills**](https://nicknisi.com/posts/claude-skills/) | [](https://nicknisi.com/posts/claude-skills/) | Getting started with Claude Skills |
|
||||
| [**Young Leaders: Skills, Commands, Subagents, Plugins**](https://www.youngleaders.tech/p/claude-skills-commands-subagents-plugins) | [](https://www.youngleaders.tech/p/claude-skills-commands-subagents-plugins) | Comparison of Claude features |
|
||||
|
||||
### 🎥 Videos
|
||||
|
||||
| Video | | |
|
||||
|-------|---|---|
|
||||
| [**Video 1**](https://www.youtube.com/watch?v=421T2iWTQio) | [](https://www.youtube.com/watch?v=421T2iWTQio) | |
|
||||
| [**Video 2**](https://www.youtube.com/watch?v=G-5bInklwRQ) | [](https://www.youtube.com/watch?v=G-5bInklwRQ) | |
|
||||
| [**Video 3**](https://www.youtube.com/watch?v=46zQX7PSHfU) | [](https://www.youtube.com/watch?v=46zQX7PSHfU) | |
|
||||
| [**Video 4**](https://www.youtube.com/watch?v=IoqpBKrNaZI) | [](https://www.youtube.com/watch?v=IoqpBKrNaZI) | |
|
||||
| [**Video 5**](https://www.youtube.com/watch?v=QpGWaWH1DxY) | [](https://www.youtube.com/watch?v=QpGWaWH1DxY) | |
|
||||
| [**Video 6**](https://www.youtube.com/watch?v=WKFFFumnzYI) | [](https://www.youtube.com/watch?v=WKFFFumnzYI) | |
|
||||
| [**Video 7**](https://www.youtube.com/watch?v=FOqbS_llAms) | [](https://www.youtube.com/watch?v=FOqbS_llAms) | |
|
||||
| [**Video 8**](https://www.youtube.com/watch?v=v1y5EUSQ8WA) | [](https://www.youtube.com/watch?v=v1y5EUSQ8WA) | |
|
||||
| [**Video 9**](https://www.youtube.com/watch?v=M8yaR-wNGj0) | [](https://www.youtube.com/watch?v=M8yaR-wNGj0) | |
|
||||
| [**Video 10**](https://www.youtube.com/watch?v=MZZCW179nKM) | [](https://www.youtube.com/watch?v=MZZCW179nKM) | |
|
||||
|
||||
|
||||
## 🤝 Contributing
|
||||
|
||||
- Submit new subagents via PR
|
||||
- Improve existing definitions
|
||||
- Add new Skills & docs & videos & articles
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user