creating-skills
Expert guidance for creating, writing, and refining Claude Code Skills. Use when working with SKILL.md files, authoring new skills, improving existing skills, or understanding skill structure and best practices.
What this skill does
# Creating Agent Skills This skill teaches how to create effective Claude Code Skills following Anthropic's official specification. ## Core Principles ### 1. Skills Are Prompts All prompting best practices apply. Be clear, be direct. Assume Claude is smart - only add context Claude doesn't have. ### 2. Standard Markdown Format Use YAML frontmatter + markdown body. **No XML tags** - use standard markdown headings. ```markdown --- name: my-skill-name description: What it does and when to use it --- # My Skill Name ## Quick Start Immediate actionable guidance... ## Instructions Step-by-step procedures... ## Examples Concrete usage examples... ``` ### 3. Progressive Disclosure Keep SKILL.md under 500 lines. Split detailed content into reference files. Load only what's needed. ``` my-skill/ ├── SKILL.md # Entry point (required) ├── reference.md # Detailed docs (loaded when needed) ├── examples.md # Usage examples └── scripts/ # Utility scripts (executed, not loaded) ``` ### 4. Effective Descriptions The description field enables skill discovery. Include both what the skill does AND when to use it. Write in third person. **Good:** ```yaml description: Extracts text and tables from PDF files, fills forms, merges documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction. ``` **Bad:** ```yaml description: Helps with documents ``` ## Skill Structure ### Frontmatter Fields Our convention treats `name` and `description` as **required** for discoverability, even though the official spec marks them as optional. | Field | Convention | Description | |-------|------------|-------------| | `name` | Required | Lowercase letters, numbers, hyphens only (max 64 chars). Becomes the `/slash-command`. Defaults to directory name if omitted. | | `description` | Required | What it does AND when to use it (third person). Combined with `when_to_use`, truncated at 1,536 chars in the listing. | | `when_to_use` | No | Extra trigger phrases appended to `description` in the skill listing. | | `argument-hint` | No | Hint shown during autocomplete, e.g. `[issue-number]` or `[filename] [format]`. | | `arguments` | No | Named positional args for `$name` substitution. Space-separated string or YAML list. | | `disable-model-invocation` | No | `true` prevents Claude from auto-loading. Use for side-effect workflows (`/commit`, `/deploy`). | | `user-invocable` | No | `false` hides from the `/` menu. Use for background knowledge. | | `allowed-tools` | No | Tools Claude can use without prompting, e.g. `Bash(git add *) Bash(git commit *)`. | | `model` | No | Override model for this skill's turn. | | `effort` | No | Override effort level: `low`, `medium`, `high`, `xhigh`, `max`. | | `context` | No | `fork` runs the skill in an isolated subagent. | | `agent` | No | Subagent type when `context: fork`. Built-ins: `Explore`, `Plan`, `general-purpose`. | | `paths` | No | Glob patterns limiting when the skill auto-activates. | | `hooks` | No | Hooks scoped to this skill's lifecycle. | | `shell` | No | Shell for `` ! `command` `` injection blocks: `bash` (default) or `powershell`. | ### Naming Conventions Use **gerund form** (verb + -ing) for skill names: - `processing-pdfs` - `analyzing-spreadsheets` - `generating-commit-messages` - `reviewing-code` Avoid: `helper`, `utils`, `tools`, `anthropic-*`, `claude-*` ### Body Structure Use standard markdown headings: ```markdown # Skill Name ## Quick Start Fastest path to value... ## Instructions Core guidance Claude follows... ## Examples Input/output pairs showing expected behavior... ## Advanced Features Additional capabilities (link to reference files)... ## Guidelines Rules and constraints... ``` ## Commands → Skills Merge Commands and skills are now equivalent — both create a `/slash-command`. A file at `.claude/commands/deploy.md` and a skill at `.claude/skills/deploy/SKILL.md` both produce `/deploy` and work the same way. Existing `.claude/commands/` files keep working. Skills are preferred because they support supporting files, invocation control frontmatter, and automatic discovery. The skill `name` field IS the slash command. No separate command file is needed. ## What Would You Like To Do? 1. **Create new skill** - Build from scratch 2. **Audit existing skill** - Check against best practices 3. **Add component** - Add workflow/reference/example 4. **Get guidance** - Understand skill design ## Creating a New Skill ### Step 1: Choose Type **Simple skill (single file):** - Under 500 lines - Self-contained guidance - No complex workflows **Progressive disclosure skill (multiple files):** - SKILL.md as overview - Reference files for detailed docs - Scripts for utilities ### Step 2: Create SKILL.md ```markdown --- name: your-skill-name description: [What it does]. Use when [trigger conditions]. --- # Your Skill Name ## Quick Start [Immediate actionable example] ```[language] [Code example] ``` ## Instructions [Core guidance] ## Examples **Example 1:** Input: [description] Output: ``` [result] ``` ## Guidelines - [Constraint 1] - [Constraint 2] ``` ### Step 3: Add Reference Files (If Needed) Link from SKILL.md to detailed content: ```markdown For API reference, see [REFERENCE.md](REFERENCE.md). For form filling guide, see [FORMS.md](FORMS.md). ``` Keep references **one level deep** from SKILL.md. ### Step 4: Add Scripts (If Needed) Scripts execute without loading into context: ```markdown ## Utility Scripts Extract fields: ```bash python scripts/analyze.py input.pdf > fields.json ``` ``` ### Step 5: Test With Real Usage 1. Test with actual tasks, not test scenarios 2. Observe where Claude struggles 3. Refine based on real behavior 4. Test with Haiku, Sonnet, and Opus ## Auditing Existing Skills Check against this rubric: - [ ] Valid YAML frontmatter (`name` + `description` present — our required convention) - [ ] Description includes trigger keywords (third person, specific) - [ ] Uses standard markdown headings (not XML tags) - [ ] `disable-model-invocation: true` set for side-effect workflows (deploy, commit, send) - [ ] SKILL.md under 500 lines - [ ] References one level deep - [ ] Examples are concrete, not abstract - [ ] Consistent terminology - [ ] No time-sensitive information - [ ] Scripts handle errors explicitly - [ ] No separate `.claude/commands/` file created (skill name is the slash command) ## Common Patterns ### Template Pattern Provide output templates for consistent results: ```markdown ## Report Template ```markdown # [Analysis Title] ## Executive Summary [One paragraph overview] ## Key Findings - Finding 1 - Finding 2 ## Recommendations 1. [Action item] 2. [Action item] ``` ``` ### Workflow Pattern For complex multi-step tasks: ```markdown ## Migration Workflow Copy this checklist: ``` - [ ] Step 1: Backup database - [ ] Step 2: Run migration script - [ ] Step 3: Validate output - [ ] Step 4: Update configuration ``` **Step 1: Backup database** Run: `./scripts/backup.sh` ... ``` ### Conditional Pattern Guide through decision points: ```markdown ## Choose Your Approach **Creating new content?** Follow "Creation workflow" below. **Editing existing?** Follow "Editing workflow" below. ``` ## Anti-Patterns to Avoid - **XML tags in body** - Use markdown headings instead - **Vague descriptions** - Be specific with trigger keywords - **Deep nesting** - Keep references one level from SKILL.md - **Too many options** - Provide a default with escape hatch - **Windows paths** - Always use forward slashes - **Punting to Claude** - Scripts should handle errors - **Time-sensitive info** - Use "old patterns" section instead ## Reference Files For detailed guidance, see: - [official-spec.md](references/official-spec.md) - Full frontmatter reference, string substitutions, shell injection, forked context - [invocation-and-arguments.md](references/invocation-and-arguments.md
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.