Claude Code向けスキルのキュレーション済みリスト。プログレッシブディスクロージャアーキテクチャの解説付き。
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 |
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:
/v1/skills API documentation| Tool | Best For |
|---|---|
| Skills | Reusable procedural knowledge across conversations |
| Prompts | One-time instructions and immediate context |
| Projects | Persistent background knowledge within workspaces |
| Subagents | Independent task execution with specific permissions |
| MCP | Connecting Claude to external data sources |
Use Skills when: Capabilities should be accessible to any Claude instance. They're portable expertise.
Use Subagents when: You need self-contained agents designed for specific purposes with independent workflows and restricted tool access.
Combined approach: Subagents can leverage Skills for specialized expertise, merging independence with portable knowledge.
Key insight: If you find yourself typing the same prompt repeatedly across multiple conversations, it's time to create a Skill.
| 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 |
Video tutorials coming soon! Have a good video about Claude Skills? Submit a PR!
⚠️ Important: Skills can execute arbitrary code in Claude's environment. Only install skills from trusted sources.
Linux path bug (Oct 18, 2025): Agent SDK uses hardcoded macOS paths instead of environment home directory
Enterprise distribution: No centralized admin management yet for custom skills on claude.ai
Skills not appearing in Claude
Skills not loading/activating
name and description fields are presentPermission errors
Skill execution failures
Q: How much do skills impact token usage?
A: Skills are highly efficient thanks to progressive disclosure. Each skill uses only ~100 tokens during metadata scanning to determine relevance. When activated, the full skill content loads at <5k tokens. Bundled resources only load as needed.
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:
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.
Contributions welcome! See contribution guidelines for details. To add a skill or resource: fork, add to appropriate section, submit PR.
トピック