Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Guidance for developing custom skills (plugins) for Claude Code from the official Anthropic repository.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/skill-creator-original.md
1---2name: skill-creator3description: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.4license: Complete terms in LICENSE.txt5---67# Skill Creator89This skill provides guidance for creating effective skills.1011## About Skills1213Skills are modular, self-contained packages that extend Claude's capabilities by providing14specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific15domains or tasks—they transform Claude from a general-purpose agent into a specialized agent16equipped with procedural knowledge that no model can fully possess.1718### What Skills Provide19201. Specialized workflows - Multi-step procedures for specific domains212. Tool integrations - Instructions for working with specific file formats or APIs223. Domain expertise - Company-specific knowledge, schemas, business logic234. Bundled resources - Scripts, references, and assets for complex and repetitive tasks2425### Anatomy of a Skill2627Every skill consists of a required SKILL.md file and optional bundled resources:2829```30skill-name/31├── SKILL.md (required)32│ ├── YAML frontmatter metadata (required)33│ │ ├── name: (required)34│ │ └── description: (required)35│ └── Markdown instructions (required)36└── Bundled Resources (optional)37├── scripts/ - Executable code (Python/Bash/etc.)38├── references/ - Documentation intended to be loaded into context as needed39└── assets/ - Files used in output (templates, icons, fonts, etc.)40```4142#### SKILL.md (required)4344**Metadata Quality:** The `name` and `description` in YAML frontmatter determine when Claude will use the skill. Be specific about what the skill does and when to use it. Use the third-person (e.g. "This skill should be used when..." instead of "Use this skill when...").4546#### Bundled Resources (optional)4748##### Scripts (`scripts/`)4950Executable code (Python/Bash/etc.) for tasks that require deterministic reliability or are repeatedly rewritten.5152- **When to include**: When the same code is being rewritten repeatedly or deterministic reliability is needed53- **Example**: `scripts/rotate_pdf.py` for PDF rotation tasks54- **Benefits**: Token efficient, deterministic, may be executed without loading into context55- **Note**: Scripts may still need to be read by Claude for patching or environment-specific adjustments5657##### References (`references/`)5859Documentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking.6061- **When to include**: For documentation that Claude should reference while working62- **Examples**: `references/finance.md` for financial schemas, `references/mnda.md` for company NDA template, `references/policies.md` for company policies, `references/api_docs.md` for API specifications63- **Use cases**: Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides64- **Benefits**: Keeps SKILL.md lean, loaded only when Claude determines it's needed65- **Best practice**: If files are large (>10k words), include grep search patterns in SKILL.md66- **Avoid duplication**: Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skill—this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files.6768##### Assets (`assets/`)6970Files not intended to be loaded into context, but rather used within the output Claude produces.7172- **When to include**: When the skill needs files that will be used in the final output73- **Examples**: `assets/logo.png` for brand assets, `assets/slides.pptx` for PowerPoint templates, `assets/frontend-template/` for HTML/React boilerplate, `assets/font.ttf` for typography74- **Use cases**: Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified75- **Benefits**: Separates output resources from documentation, enables Claude to use files without loading them into context7677### Progressive Disclosure Design Principle7879Skills use a three-level loading system to manage context efficiently:80811. **Metadata (name + description)** - Always in context (~100 words)822. **SKILL.md body** - When skill triggers (<5k words)833. **Bundled resources** - As needed by Claude (Unlimited*)8485*Unlimited because scripts can be executed without reading into context window.8687## Skill Creation Process8889To create a skill, follow the "Skill Creation Process" in order, skipping steps only if there is a clear reason why they are not applicable.9091### Step 1: Understanding the Skill with Concrete Examples9293Skip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.9495To create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback.9697For example, when building an image-editor skill, relevant questions include:9899- "What functionality should the image-editor skill support? Editing, rotating, anything else?"100- "Can you give some examples of how this skill would be used?"101- "I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?"102- "What would a user say that should trigger this skill?"103104To avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness.105106Conclude this step when there is a clear sense of the functionality the skill should support.107108### Step 2: Planning the Reusable Skill Contents109110To turn concrete examples into an effective skill, analyze each example by:1111121. Considering how to execute on the example from scratch1132. Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly114115Example: When building a `pdf-editor` skill to handle queries like "Help me rotate this PDF," the analysis shows:1161171. Rotating a PDF requires re-writing the same code each time1182. A `scripts/rotate_pdf.py` script would be helpful to store in the skill119120Example: When designing a `frontend-webapp-builder` skill for queries like "Build me a todo app" or "Build me a dashboard to track my steps," the analysis shows:1211221. Writing a frontend webapp requires the same boilerplate HTML/React each time1232. An `assets/hello-world/` template containing the boilerplate HTML/React project files would be helpful to store in the skill124125Example: When building a `big-query` skill to handle queries like "How many users have logged in today?" the analysis shows:1261271. Querying BigQuery requires re-discovering the table schemas and relationships each time1282. A `references/schema.md` file documenting the table schemas would be helpful to store in the skill129130To establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.131132### Step 3: Initializing the Skill133134At this point, it is time to actually create the skill.135136Skip this step only if the skill being developed already exists, and iteration or packaging is needed. In this case, continue to the next step.137138When creating a new skill from scratch, always run the `init_skill.py` script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable.139140Usage:141142```bash143scripts/init_skill.py <skill-name> --path <output-directory>144```145146The script:147148- Creates the skill directory at the specified path149- Generates a SKILL.md template with proper frontmatter and TODO placeholders150- Creates example resource directories: `scripts/`, `references/`, and `assets/`151- Adds example files in each directory that can be customized or deleted152153After initialization, customize or remove the generated SKILL.md and example files as needed.154155### Step 4: Edit the Skill156157When editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Claude to use. Focus on including information that would be beneficial and non-obvious to Claude. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Claude instance execute these tasks more effectively.158159#### Start with Reusable Skill Contents160161To begin implementation, start with the reusable resources identified above: `scripts/`, `references/`, and `assets/` files. Note that this step may require user input. For example, when implementing a `brand-guidelines` skill, the user may need to provide brand assets or templates to store in `assets/`, or documentation to store in `references/`.162163Also, delete any example files and directories not needed for the skill. The initialization script creates example files in `scripts/`, `references/`, and `assets/` to demonstrate structure, but most skills won't need all of them.164165#### Update SKILL.md166167**Writing Style:** Write the entire skill using **imperative/infinitive form** (verb-first instructions), not second person. Use objective, instructional language (e.g., "To accomplish X, do Y" rather than "You should do X" or "If you need to do X"). This maintains consistency and clarity for AI consumption.168169To complete SKILL.md, answer the following questions:1701711. What is the purpose of the skill, in a few sentences?1722. When should the skill be used?1733. In practice, how should Claude use the skill? All reusable skill contents developed above should be referenced so that Claude knows how to use them.174175### Step 5: Packaging a Skill176177Once the skill is ready, it should be packaged into a distributable zip file that gets shared with the user. The packaging process automatically validates the skill first to ensure it meets all requirements:178179```bash180scripts/package_skill.py <path/to/skill-folder>181```182183Optional output directory specification:184185```bash186scripts/package_skill.py <path/to/skill-folder> ./dist187```188189The packaging script will:1901911. **Validate** the skill automatically, checking:192- YAML frontmatter format and required fields193- Skill naming conventions and directory structure194- Description completeness and quality195- File organization and resource references1961972. **Package** the skill if validation passes, creating a zip file named after the skill (e.g., `my-skill.zip`) that includes all files and maintains the proper directory structure for distribution.198199If validation fails, the script will report the errors and exit without creating a package. Fix any validation errors and run the packaging command again.200201### Step 6: Iterate202203After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.204205**Iteration workflow:**2061. Use the skill on real tasks2072. Notice struggles or inefficiencies2083. Identify how SKILL.md or bundled resources should be updated2094. Implement changes and test again210