example-skill
Skillの構造と形式を示すためのもので、新しいSkillを作成する際のパターン例を提供し、Skill開発の足がかりをスムーズにするSkill。
📜 元の英語説明(参考)
This skill should be used when demonstrating skill structure and format. Provides example patterns for creating new skills.
🇯🇵 日本人クリエイター向け解説
Skillの構造と形式を示すためのもので、新しいSkillを作成する際のパターン例を提供し、Skill開発の足がかりをスムーズにするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o example-skill.zip https://jpskill.com/download/16811.zip && unzip -o example-skill.zip && rm example-skill.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/16811.zip -OutFile "$d\example-skill.zip"; Expand-Archive "$d\example-skill.zip" -DestinationPath $d -Force; ri "$d\example-skill.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
example-skill.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
example-skillフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 この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-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 2
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Example Skill
Claude Code スキルの適切な構造と形式を示すデモンストレーションスキルです。
このスキルを使用する場面
- 新しいスキルを作成する必要があり、参照が必要な場合
- スキルの構造とベストプラクティスを理解したい場合
- スキルにリソースをバンドルする方法を学びたい場合
このスキルの内容
- 適切な YAML frontmatter の形式を示します
- コンテンツ構造の要件を示します
- バンドルされたリソースの例を提供します
- スキルのドキュメントに関するベストプラクティスを示します
コア原則
原則 1: 明確な目的
スキルは、明確で明確に定義された目的を持つ必要があります。「このスキルを使用する場面」セクションでは、いつスキルを適用するかが明確になるようにする必要があります。
原則 2: プログレッシブな開示
コンテンツを、高レベルの概要から詳細な実装まで構造化します。ワークフローに入る前に、「このスキルを使用する場面」と「このスキルの内容」から始めます。
原則 3: 実行可能なワークフロー
直接実行できるステップバイステップのワークフローを提供します。例とアンチパターンを含めます。
ワークフロー
ステップ 1: ニーズの特定
このスキルが現在のタスクに適しているかどうかを判断します。
ステップ 2: ドキュメントの確認
スキルのドキュメントを読んで、機能と制限事項を理解します。
ステップ 3: スキルの適用
ワークフローのステップに従って、スキルを適用します。
ステップ 4: 結果の検証
スキルが意図した結果を達成したことを確認します。
ベストプラクティス
- スキルを単一のドメインまたは機能に焦点を当て続ける
- 明確な例とユースケースを含める
- 一般的な間違いを避けるために、アンチパターンを文書化する
- リソースが価値を追加する場合は、バンドルする
アンチパターン
- すべてを実行しようとする、過度に広範なスキルを作成する
- 「このスキルを使用する場面」セクションをスキップする
- 例またはユースケースがない
- バンドルされたリソースを文書化しない
例
例 1: 基本的な使用法
シナリオ: コードレビュー用の新しいスキルを作成する
アプローチ:
- このサンプルスキルの構造を確認します
steve/templates/AGENT_SKILL.template.mdのテンプレートを使用します- ドメイン固有のコンテンツを入力します
- 必要に応じて、バンドルされたリソースを追加します
参照ファイル
このスキルには、references/ に参照ファイルが含まれています。
structure-guide.md: 詳細な構造ガイドラインexamples.md: 追加の例
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Example Skill
A demonstration skill showing the proper structure and format for Claude Code skills.
When to Use This Skill
- Creating new skills and need a reference
- Understanding skill structure and best practices
- Learning how to bundle resources with skills
What This Skill Does
- Demonstrates proper YAML frontmatter format
- Shows content structure requirements
- Provides examples of bundled resources
- Illustrates best practices for skill documentation
Core Principles
Principle 1: Clear Purpose
Skills should have a clear, well-defined purpose. The "When to Use" section should make it obvious when to apply the skill.
Principle 2: Progressive Disclosure
Structure content from high-level overview to detailed implementation. Start with "When to Use" and "What This Skill Does" before diving into workflows.
Principle 3: Actionable Workflows
Provide step-by-step workflows that can be followed directly. Include examples and anti-patterns.
Workflow
Step 1: Identify Need
Determine if this skill is appropriate for the current task.
Step 2: Review Documentation
Read the skill documentation to understand capabilities and limitations.
Step 3: Apply Skill
Follow the workflow steps to apply the skill.
Step 4: Validate Results
Check that the skill achieved the intended outcome.
Best Practices
- Keep skills focused on a single domain or capability
- Include clear examples and use cases
- Document anti-patterns to avoid common mistakes
- Bundle resources when they add value
Anti-Patterns
- Creating overly broad skills that try to do everything
- Skipping the "When to Use" section
- Missing examples or use cases
- Not documenting bundled resources
Examples
Example 1: Basic Usage
Scenario: Creating a new skill for code review
Approach:
- Review this example skill structure
- Use the template from
steve/templates/AGENT_SKILL.template.md - Fill in domain-specific content
- Add bundled resources if needed
Reference Files
This skill includes reference files in references/:
structure-guide.md: Detailed structure guidelinesexamples.md: Additional examples
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (2,462 bytes)
- 📎 references/structure-guide.md (663 bytes)