🧩 プラグイン内Skill開発ガイド
Claude Code プラグイン内に Skill を追加・改善するための「Skill 開発」Skill。
📺 まず動画で見る(YouTube)
▶ 【Claude Code Skills超入門】自分専用のAI社員を作る方法 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.
🇯🇵 日本人クリエイター向け解説
Claude Code プラグイン内に Skill を追加・改善するための「Skill 開発」Skill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 2
💬 こう話しかけるだけ — サンプルプロンプト
- › プラグイン内Skill開発ガイド を使って、自社業務用の Skill を作りたい
- › プラグイン内Skill開発ガイド で、既存 Skill の description を発動率改善のために改善
- › プラグイン内Skill開発ガイド を使って、社内ナレッジを Skill 化したい
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
[Skill 名] スキル開発
Claude Code プラグイン向けスキル開発
このスキルは、Claude Code プラグイン向けの効果的なスキルを作成するためのガイダンスを提供します。
スキルについて
スキルは、モジュール式で自己完結型のパッケージであり、専門知識、ワークフロー、ツールを提供することで Claude の機能を拡張します。これらは特定のドメインやタスク向けの「オンボーディングガイド」と考えてください。スキルは Claude を汎用エージェントから、どのモデルも完全に持ち得ない手続き的知識を備えた専門エージェントへと変貌させます。
スキルが提供するもの
- 専門的なワークフロー - 特定のドメイン向けの多段階手順
- ツール統合 - 特定のファイル形式や API を扱うための指示
- ドメイン専門知識 - 企業固有の知識、スキーマ、ビジネスロジック
- バンドルされたリソース - 複雑で反復的なタスク向けのスクリプト、リファレンス、アセット
スキルの構成
すべてのスキルは、必須の SKILL.md ファイルとオプションのバンドルされたリソースで構成されます。
skill-name/
├── SKILL.md (必須)
│ ├── YAML frontmatter metadata (必須)
│ │ ├── name: (必須)
│ │ └── description: (必須)
│ └── Markdown instructions (必須)
└── Bundled Resources (オプション)
├── scripts/ - 実行可能なコード (Python/Bash/など)
├── references/ - 必要に応じてコンテキストにロードされることを意図したドキュメント
└── assets/ - 出力で使用されるファイル (テンプレート、アイコン、フォントなど)
SKILL.md (必須)
メタデータの品質: YAML frontmatter の name と description は、Claude がいつスキルを使用するかを決定します。スキルが何をするのか、いつ使用するのかを具体的に記述してください。三人称を使用してください(例: 「このスキルは、〜の場合に使用されるべきです」ではなく、「このスキルを〜の場合に使用してください」)。
バンドルされたリソース (オプション)
スクリプト (scripts/)
決定論的な信頼性が必要なタスクや、繰り返し書き直されるタスク向けの実行可能なコード (Python/Bash/など) です。
- 含めるべき場合: 同じコードが繰り返し書き直されている場合、または決定論的な信頼性が必要な場合
- 例: PDF 回転タスク向けの
scripts/rotate_pdf.py - 利点: トークン効率が良い、決定論的である、コンテキストにロードせずに実行できる場合がある
- 注: スクリプトは、パッチ適用や環境固有の調整のために Claude によって読み取られる必要がある場合があります
リファレンス (references/)
Claude のプロセスと思考を知らせるために、必要に応じてコンテキストにロードされることを意図したドキュメントおよび参照資料です。
- 含めるべき場合: Claude が作業中に参照すべきドキュメントの場合
- 例: 財務スキーマ向けの
references/finance.md、会社 NDA テンプレート向けのreferences/mnda.md、会社ポリシー向けのreferences/policies.md、API 仕様向けのreferences/api_docs.md - ユースケース: データベーススキーマ、API ドキュメント、ドメイン知識、会社ポリシー、詳細なワークフローガイド
- 利点: SKILL.md を簡潔に保ち、Claude が必要と判断した場合にのみロードされる
- ベストプラクティス: ファイルが大きい場合(10k ワード以上)は、SKILL.md に grep 検索パターンを含める
- 重複を避ける: 情報は SKILL.md またはリファレンスファイルのいずれかに存在すべきであり、両方には存在すべきではありません。スキルにとって本当に核となる情報でない限り、詳細な情報にはリファレンスファイルを優先してください。これにより、SKILL.md を簡潔に保ちながら、コンテキストウィンドウを占有することなく情報を発見可能にします。SKILL.md には、必須の手順とワークフローガイダンスのみを保持し、詳細な参照資料、スキーマ、および例はリファレンスファイルに移動してください。
アセット (assets/)
コンテキストにロードされることを意図せず、Claude が生成する出力内で使用されるファイルです。
- 含めるべき場合: スキルが最終出力で使用されるファイルを必要とする場合
- 例: ブランドアセット向けの
assets/logo.png、PowerPoint テンプレート向けのassets/slides.pptx、HTML/React ボイラープレート向けのassets/frontend-template/、タイポグラフィ向けのassets/font.ttf - ユースケース: テンプレート、画像、アイコン、ボイラープレートコード、フォント、コピーまたは変更されるサンプルドキュメント
- 利点: 出力リソースをドキュメントから分離し、Claude がファイルをコンテキストにロードせずに使用できるようにする
段階的開示デザイン原則
スキルは、コンテキストを効率的に管理するために、3段階のロードシステムを使用します。
- メタデータ (name + description) - 常にコンテキスト内 (~100 ワード)
- SKILL.md 本体 - スキルがトリガーされたとき (<5k ワード)
- バンドルされたリソース - Claude が必要に応じて (無制限*)
*スクリプトはコンテキストウィンドウに読み込まずに実行できるため、無制限です。
スキル作成プロセス
スキルを作成するには、「スキル作成プロセス」を順番に実行してください。適用できない明確な理由がある場合にのみ、ステップをスキップしてください。
ステップ 1: 具体的な例によるスキルの理解
スキルの使用パターンがすでに明確に理解されている場合にのみ、このステップをスキップしてください。既存のスキルを扱う場合でも、このステップは依然として価値があります。
効果的なスキルを作成するには、スキルがどのように使用されるかの具体的な例を明確に理解してください。この理解は、直接的なユーザー例から得られるか、ユーザーフィードバックで検証された生成された例から得られます。
たとえば、画像エディタースキルを構築する場合、関連する質問には次のようなものがあります。
- 「画像エディタースキルはどのような機能をサポートすべきですか?編集、回転、その他はありますか?」
- 「このスキルがどのように使用されるかの例をいくつか挙げてもらえますか?」
- 「ユーザーが『この画像の赤目を削除して』や『この画像を回転させて』のようなことを尋ねるのを想像できます。このスキルが使用される他の方法はありますか?」
- 「このスキルをトリガーするためにユーザーは何と言うでしょうか?」
ユーザーを圧倒しないように、1つのメッセージで多くの質問をしないようにしてください。最も重要な質問から始め、必要に応じてフォローアップして、より効果的にしてください。
スキルがサポートすべき機能について明確な感覚が得られたら、このステップを終了してください。
ステップ 2: 再利用可能なスキルコンテンツの計画
具体的な例を効果的なスキルに変えるには、各例を次のように分析します。
- 例をゼロから実行する方法を検討する
- どのスクリプト、参照
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Skill Development for Claude Code Plugins
This skill provides guidance for creating effective skills for Claude Code plugins.
About Skills
Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks—they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge that no model can fully possess.
What Skills Provide
- Specialized workflows - Multi-step procedures for specific domains
- Tool integrations - Instructions for working with specific file formats or APIs
- Domain expertise - Company-specific knowledge, schemas, business logic
- Bundled resources - Scripts, references, and assets for complex and repetitive tasks
Anatomy of a Skill
Every skill consists of a required SKILL.md file and optional bundled resources:
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter metadata (required)
│ │ ├── name: (required)
│ │ └── description: (required)
│ └── Markdown instructions (required)
└── Bundled Resources (optional)
├── scripts/ - Executable code (Python/Bash/etc.)
├── references/ - Documentation intended to be loaded into context as needed
└── assets/ - Files used in output (templates, icons, fonts, etc.)
SKILL.md (required)
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...").
Bundled Resources (optional)
Scripts (scripts/)
Executable code (Python/Bash/etc.) for tasks that require deterministic reliability or are repeatedly rewritten.
- When to include: When the same code is being rewritten repeatedly or deterministic reliability is needed
- Example:
scripts/rotate_pdf.pyfor PDF rotation tasks - Benefits: Token efficient, deterministic, may be executed without loading into context
- Note: Scripts may still need to be read by Claude for patching or environment-specific adjustments
References (references/)
Documentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking.
- When to include: For documentation that Claude should reference while working
- Examples:
references/finance.mdfor financial schemas,references/mnda.mdfor company NDA template,references/policies.mdfor company policies,references/api_docs.mdfor API specifications - Use cases: Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides
- Benefits: Keeps SKILL.md lean, loaded only when Claude determines it's needed
- Best practice: If files are large (>10k words), include grep search patterns in SKILL.md
- 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.
Assets (assets/)
Files not intended to be loaded into context, but rather used within the output Claude produces.
- When to include: When the skill needs files that will be used in the final output
- Examples:
assets/logo.pngfor brand assets,assets/slides.pptxfor PowerPoint templates,assets/frontend-template/for HTML/React boilerplate,assets/font.ttffor typography - Use cases: Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified
- Benefits: Separates output resources from documentation, enables Claude to use files without loading them into context
Progressive Disclosure Design Principle
Skills use a three-level loading system to manage context efficiently:
- Metadata (name + description) - Always in context (~100 words)
- SKILL.md body - When skill triggers (<5k words)
- Bundled resources - As needed by Claude (Unlimited*)
*Unlimited because scripts can be executed without reading into context window.
Skill Creation Process
To create a skill, follow the "Skill Creation Process" in order, skipping steps only if there is a clear reason why they are not applicable.
Step 1: Understanding the Skill with Concrete Examples
Skip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.
To 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.
For example, when building an image-editor skill, relevant questions include:
- "What functionality should the image-editor skill support? Editing, rotating, anything else?"
- "Can you give some examples of how this skill would be used?"
- "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?"
- "What would a user say that should trigger this skill?"
To 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.
Conclude this step when there is a clear sense of the functionality the skill should support.
Step 2: Planning the Reusable Skill Contents
To turn concrete examples into an effective skill, analyze each example by:
- Considering how to execute on the example from scratch
- Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly
Example: When building a pdf-editor skill to handle queries like "Help me rotate this PDF," the analysis shows:
- Rotating a PDF requires re-writing the same code each time
- A
scripts/rotate_pdf.pyscript would be helpful to store in the skill
Example: 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:
- Writing a frontend webapp requires the same boilerplate HTML/React each time
- An
assets/hello-world/template containing the boilerplate HTML/React project files would be helpful to store in the skill
Example: When building a big-query skill to handle queries like "How many users have logged in today?" the analysis shows:
- Querying BigQuery requires re-discovering the table schemas and relationships each time
- A
references/schema.mdfile documenting the table schemas would be helpful to store in the skill
For Claude Code plugins: When building a hooks skill, the analysis shows:
- Developers repeatedly need to validate hooks.json and test hook scripts
scripts/validate-hook-schema.shandscripts/test-hook.shutilities would be helpfulreferences/patterns.mdfor detailed hook patterns to avoid bloating SKILL.md
To establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.
Step 3: Create Skill Structure
For Claude Code plugins, create the skill directory structure:
mkdir -p plugin-name/skills/skill-name/{references,examples,scripts}
touch plugin-name/skills/skill-name/SKILL.md
Note: Unlike the generic skill-creator which uses init_skill.py, plugin skills are created directly in the plugin's skills/ directory with a simpler manual structure.
Step 4: Edit the Skill
When editing the (newly-created 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.
Start with Reusable Skill Contents
To 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/.
Also, delete any example files and directories not needed for the skill. Create only the directories you actually need (references/, examples/, scripts/).
Update SKILL.md
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.
Description (Frontmatter): Use third-person format with specific trigger phrases:
---
name: Skill Name
description: This skill should be used when the user asks to "specific phrase 1", "specific phrase 2", "specific phrase 3". Include exact phrases users would say that should trigger this skill. Be concrete and specific.
version: 0.1.0
---
Good description examples:
description: This skill should be used when the user asks to "create a hook", "add a PreToolUse hook", "validate tool use", "implement prompt-based hooks", or mentions hook events (PreToolUse, PostToolUse, Stop).
Bad description examples:
description: Use this skill when working with hooks. # Wrong person, vague
description: Load when user needs hook help. # Not third person
description: Provides hook guidance. # No trigger phrases
To complete SKILL.md body, answer the following questions:
- What is the purpose of the skill, in a few sentences?
- When should the skill be used? (Include this in frontmatter description with specific triggers)
- 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.
Keep SKILL.md lean: Target 1,500-2,000 words for the body. Move detailed content to references/:
- Detailed patterns →
references/patterns.md - Advanced techniques →
references/advanced.md - Migration guides →
references/migration.md - API references →
references/api-reference.md
Reference resources in SKILL.md:
## Additional Resources
### Reference Files
For detailed patterns and techniques, consult:
- **`references/patterns.md`** - Common patterns
- **`references/advanced.md`** - Advanced use cases
### Example Files
Working examples in `examples/`:
- **`example-script.sh`** - Working example
Step 5: Validate and Test
For plugin skills, validation is different from generic skills:
- Check structure: Skill directory in
plugin-name/skills/skill-name/ - Validate SKILL.md: Has frontmatter with name and description
- Check trigger phrases: Description includes specific user queries
- Verify writing style: Body uses imperative/infinitive form, not second person
- Test progressive disclosure: SKILL.md is lean (~1,500-2,000 words), detailed content in references/
- Check references: All referenced files exist
- Validate examples: Examples are complete and correct
- Test scripts: Scripts are executable and work correctly
Use the skill-reviewer agent:
Ask: "Review my skill and check if it follows best practices"
The skill-reviewer agent will check description quality, content organization, and progressive disclosure.
Step 6: Iterate
After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.
Iteration workflow:
- Use the skill on real tasks
- Notice struggles or inefficiencies
- Identify how SKILL.md or bundled resources should be updated
- Implement changes and test again
Common improvements:
- Strengthen trigger phrases in description
- Move long sections from SKILL.md to references/
- Add missing examples or scripts
- Clarify ambiguous instructions
- Add edge case handling
Plugin-Specific Considerations
Skill Location in Plugins
Plugin skills live in the plugin's skills/ directory:
my-plugin/
├── .claude-plugin/
│ └── plugin.json
├── commands/
├── agents/
└── skills/
└── my-skill/
├── SKILL.md
├── references/
├── examples/
└── scripts/
Auto-Discovery
Claude Code automatically discovers skills:
- Scans
skills/directory - Finds subdirectories containing
SKILL.md - Loads skill metadata (name + description) always
- Loads SKILL.md body when skill triggers
- Loads references/examples when needed
No Packaging Needed
Plugin skills are distributed as part of the plugin, not as separate ZIP files. Users get skills when they install the plugin.
Testing in Plugins
Test skills by installing plugin locally:
# Test with --plugin-dir
cc --plugin-dir /path/to/plugin
# Ask questions that should trigger the skill
# Verify skill loads correctly
Examples from Plugin-Dev
Study the skills in this plugin as examples of best practices:
hook-development skill:
- Excellent trigger phrases: "create a hook", "add a PreToolUse hook", etc.
- Lean SKILL.md (1,651 words)
- 3 references/ files for detailed content
- 3 examples/ of working hooks
- 3 scripts/ utilities
agent-development skill:
- Strong triggers: "create an agent", "agent frontmatter", etc.
- Focused SKILL.md (1,438 words)
- References include the AI generation prompt from Claude Code
- Complete agent examples
plugin-settings skill:
- Specific triggers: "plugin settings", ".local.md files", "YAML frontmatter"
- References show real implementations (multi-agent-swarm, ralph-wiggum)
- Working parsing scripts
Each demonstrates progressive disclosure and strong triggering.
Progressive Disclosure in Practice
What Goes in SKILL.md
Include (always loaded when skill triggers):
- Core concepts and overview
- Essential procedures and workflows
- Quick reference tables
- Pointers to references/examples/scripts
- Most common use cases
Keep under 3,000 words, ideally 1,500-2,000 words
What Goes in references/
Move to references/ (loaded as needed):
- Detailed patterns and advanced techniques
- Comprehensive API documentation
- Migration guides
- Edge cases and troubleshooting
- Extensive examples and walkthroughs
Each reference file can be large (2,000-5,000+ words)
What Goes in examples/
Working code examples:
- Complete, runnable scripts
- Configuration files
- Template files
- Real-world usage examples
Users can copy and adapt these directly
What Goes in scripts/
Utility scripts:
- Validation tools
- Testing helpers
- Parsing utilities
- Automation scripts
Should be executable and documented
Writing Style Requirements
Imperative/Infinitive Form
Write using verb-first instructions, not second person:
Correct (imperative):
To create a hook, define the event type.
Configure the MCP server with authentication.
Validate settings before use.
Incorrect (second person):
You should create a hook by defining the event type.
You need to configure the MCP server.
You must validate settings before use.
Third-Person in Description
The frontmatter description must use third person:
Correct:
description: This skill should be used when the user asks to "create X", "configure Y"...
Incorrect:
description: Use this skill when you want to create X...
description: Load this skill when user asks...
Objective, Instructional Language
Focus on what to do, not who should do it:
Correct:
Parse the frontmatter using sed.
Extract fields with grep.
Validate values before use.
Incorrect:
You can parse the frontmatter...
Claude should extract fields...
The user might validate values...
Validation Checklist
Before finalizing a skill:
Structure:
- [ ] SKILL.md file exists with valid YAML frontmatter
- [ ] Frontmatter has
nameanddescriptionfields - [ ] Markdown body is present and substantial
- [ ] Referenced files actually exist
Description Quality:
- [ ] Uses third person ("This skill should be used when...")
- [ ] Includes specific trigger phrases users would say
- [ ] Lists concrete scenarios ("create X", "configure Y")
- [ ] Not vague or generic
Content Quality:
- [ ] SKILL.md body uses imperative/infinitive form
- [ ] Body is focused and lean (1,500-2,000 words ideal, <5k max)
- [ ] Detailed content moved to references/
- [ ] Examples are complete and working
- [ ] Scripts are executable and documented
Progressive Disclosure:
- [ ] Core concepts in SKILL.md
- [ ] Detailed docs in references/
- [ ] Working code in examples/
- [ ] Utilities in scripts/
- [ ] SKILL.md references these resources
Testing:
- [ ] Skill triggers on expected user queries
- [ ] Content is helpful for intended tasks
- [ ] No duplicated information across files
- [ ] References load when needed
Common Mistakes to Avoid
Mistake 1: Weak Trigger Description
❌ Bad:
description: Provides guidance for working with hooks.
Why bad: Vague, no specific trigger phrases, not third person
✅ Good:
description: This skill should be used when the user asks to "create a hook", "add a PreToolUse hook", "validate tool use", or mentions hook events. Provides comprehensive hooks API guidance.
Why good: Third person, specific phrases, concrete scenarios
Mistake 2: Too Much in SKILL.md
❌ Bad:
skill-name/
└── SKILL.md (8,000 words - everything in one file)
Why bad: Bloats context when skill loads, detailed content always loaded
✅ Good:
skill-name/
├── SKILL.md (1,800 words - core essentials)
└── references/
├── patterns.md (2,500 words)
└── advanced.md (3,700 words)
Why good: Progressive disclosure, detailed content loaded only when needed
Mistake 3: Second Person Writing
❌ Bad:
You should start by reading the configuration file.
You need to validate the input.
You can use the grep tool to search.
Why bad: Second person, not imperative form
✅ Good:
Start by reading the configuration file.
Validate the input before processing.
Use the grep tool to search for patterns.
Why good: Imperative form, direct instructions
Mistake 4: Missing Resource References
❌ Bad:
# SKILL.md
[Core content]
[No mention of references/ or examples/]
Why bad: Claude doesn't know references exist
✅ Good:
# SKILL.md
[Core content]
## Additional Resources
### Reference Files
- **`references/patterns.md`** - Detailed patterns
- **`references/advanced.md`** - Advanced techniques
### Examples
- **`examples/script.sh`** - Working example
Why good: Claude knows where to find additional information
Quick Reference
Minimal Skill
skill-name/
└── SKILL.md
Good for: Simple knowledge, no complex resources needed
Standard Skill (Recommended)
skill-name/
├── SKILL.md
├── references/
│ └── detailed-guide.md
└── examples/
└── working-example.sh
Good for: Most plugin skills with detailed documentation
Complete Skill
skill-name/
├── SKILL.md
├── references/
│ ├── patterns.md
│ └── advanced.md
├── examples/
│ ├── example1.sh
│ └── example2.json
└── scripts/
└── validate.sh
Good for: Complex domains with validation utilities
Best Practices Summary
✅ DO:
- Use third-person in description ("This skill should be used when...")
- Include specific trigger phrases ("create X", "configure Y")
- Keep SKILL.md lean (1,500-2,000 words)
- Use progressive disclosure (move details to references/)
- Write in imperative/infinitive form
- Reference supporting files clearly
- Provide working examples
- Create utility scripts for common operations
- Study plugin-dev's skills as templates
❌ DON'T:
- Use second person anywhere
- Have vague trigger conditions
- Put everything in SKILL.md (>3,000 words without references/)
- Write in second person ("You should...")
- Leave resources unreferenced
- Include broken or incomplete examples
- Skip validation
Additional Resources
Study These Skills
Plugin-dev's skills demonstrate best practices:
../hook-development/- Progressive disclosure, utilities../agent-development/- AI-assisted creation, references../mcp-integration/- Comprehensive references../plugin-settings/- Real-world examples../command-development/- Clear critical concepts../plugin-structure/- Good organization
Reference Files
For complete skill-creator methodology:
references/skill-creator-original.md- Full original skill-creator content
Implementation Workflow
To create a skill for your plugin:
- Understand use cases: Identify concrete examples of skill usage
- Plan resources: Determine what scripts/references/examples needed
- Create structure:
mkdir -p skills/skill-name/{references,examples,scripts} - Write SKILL.md:
- Frontmatter with third-person description and trigger phrases
- Lean body (1,500-2,000 words) in imperative form
- Reference supporting files
- Add resources: Create references/, examples/, scripts/ as needed
- Validate: Check description, writing style, organization
- Test: Verify skill loads on expected triggers
- Iterate: Improve based on usage
Focus on strong trigger descriptions, progressive disclosure, and imperative writing style for effective skills that load when needed and provide targeted guidance.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (22,827 bytes)
- 📎 references/skill-creator-original.md (11,547 bytes)