jpskill.com
📦 その他 コミュニティ

example-command

An example user-invoked skill that demonstrates frontmatter options and the skills/<name>/SKILL.md layout

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o example-command.zip https://jpskill.com/download/22475.zip && unzip -o example-command.zip && rm example-command.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22475.zip -OutFile "$d\example-command.zip"; Expand-Archive "$d\example-command.zip" -DestinationPath $d -Force; ri "$d\example-command.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して example-command.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → example-command フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

例のコマンド(スキル形式)

これは、ユーザーが呼び出すスラッシュコマンドの skills/<name>/SKILL.md レイアウトを示しています。機能的には従来の commands/example-command.md 形式と同一です。どちらも同じ方法でロードされ、ファイルレイアウトのみが異なります。

引数

ユーザーはこれを次のように呼び出しました: $ARGUMENTS

手順

このスキルが呼び出された場合:

  1. ユーザーが提供した引数を解析します。
  2. 許可されたツールを使用して、要求されたアクションを実行します。
  3. 結果をユーザーに報告します。

フロントマターオプションのリファレンス

このレイアウトのスキルは、以下のフロントマターフィールドをサポートしています。

  • name: スキル識別子(ディレクトリ名と一致します)
  • description: /help に表示される短い説明です
  • argument-hint: ユーザーに表示されるコマンド引数のヒントです
  • allowed-tools: このスキル用に事前に承認されたツールです(権限プロンプトを減らします)
  • model: モデルを上書きします(例: "haiku", "sonnet", "opus")

使用例

/example-command my-argument
/example-command arg1 arg2
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Example Command (Skill Format)

This demonstrates the skills/<name>/SKILL.md layout for user-invoked slash commands. It is functionally identical to the legacy commands/example-command.md format — both are loaded the same way; only the file layout differs.

Arguments

The user invoked this with: $ARGUMENTS

Instructions

When this skill is invoked:

  1. Parse the arguments provided by the user
  2. Perform the requested action using allowed tools
  3. Report results back to the user

Frontmatter Options Reference

Skills in this layout support these frontmatter fields:

  • name: Skill identifier (matches directory name)
  • description: Short description shown in /help
  • argument-hint: Hints for command arguments shown to user
  • allowed-tools: Pre-approved tools for this skill (reduces permission prompts)
  • model: Override the model (e.g., "haiku", "sonnet", "opus")

Example Usage

/example-command my-argument
/example-command arg1 arg2