💬 Skill Installer
Claude Codeの様々なスキルを、指定されたリストやGitHub
📺 まず動画で見る(YouTube)
▶ 【最新版】Claude(クロード)完全解説!20以上の便利機能をこの動画1本で全て解説 ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).
🇯🇵 日本人クリエイター向け解説
Claude Codeの様々なスキルを、指定されたリストやGitHub
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o skill-installer.zip https://jpskill.com/download/490.zip && unzip -o skill-installer.zip && rm skill-installer.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/490.zip -OutFile "$d\skill-installer.zip"; Expand-Archive "$d\skill-installer.zip" -DestinationPath $d -Force; ri "$d\skill-installer.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
skill-installer.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
skill-installerフォルダができる - 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-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › skill-installer の使い方を教えて
- › skill-installer で何ができるか具体例で見せて
- › skill-installer を初めて使う人向けにステップを案内して
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
スキルインストーラー
スキルのインストールを支援します。デフォルトでは、https://github.com/openai/skills/tree/main/skills/.curated からスキルが提供されますが、ユーザーは他の場所を指定することもできます。
タスクに基づいてヘルパースクリプトを使用してください。
- ユーザーが利用可能なものを尋ねた場合、またはユーザーが何をすべきか指定せずにこのスキルを使用した場合に、キュレーションされたスキルをリストします。
- ユーザーがスキル名を提供した場合に、キュレーションされたリストからインストールします。
- ユーザーがGitHubリポジトリ/パス(プライベートリポジトリを含む)を提供した場合に、別のリポジトリからインストールします。
ヘルパースクリプトでスキルをインストールします。
コミュニケーション
キュレーションされたスキルをリストする場合、ユーザーのリクエストのコンテキストに応じて、おおよそ次のように出力してください。
{repo} からのスキル:
1. skill-1
2. skill-2 (すでにインストール済み)
3. ...
どれをインストールしますか?
スキルをインストールした後、ユーザーに「新しいスキルを認識させるにはCodexを再起動してください。」と伝えてください。
スクリプト
これらのスクリプトはすべてネットワークを使用するため、サンドボックスで実行する場合は、実行時にエスカレーションを要求してください。
scripts/list-curated-skills.py(インストール済みのアノテーション付きでキュレーションされたリストを出力します)scripts/list-curated-skills.py --format jsonscripts/install-skill-from-github.py --repo <owner>/<repo> --path <path/to/skill> [<path/to/skill> ...]scripts/install-skill-from-github.py --url https://github.com/<owner>/<repo>/tree/<ref>/<path>
動作とオプション
- パブリックGitHubリポジトリの場合、デフォルトで直接ダウンロードします。
- 認証/権限エラーでダウンロードが失敗した場合、git sparse checkout にフォールバックします。
- 宛先のスキルディレクトリがすでに存在する場合、中止します。
$CODEX_HOME/skills/<skill-name>(デフォルトは~/.codex/skills) にインストールします。- 複数の
--path値は、1回の実行で複数のスキルをインストールします。--nameが指定されていない限り、各スキルはパスのベース名から命名されます。 - オプション:
--ref <ref>(デフォルトmain)、--dest <path>、--method auto|download|git。
注意事項
- キュレーションされたリストは、GitHub API を介して
https://github.com/openai/skills/tree/main/skills/.curatedからフェッチされます。利用できない場合は、エラーを説明して終了してください。 - プライベートGitHubリポジトリは、既存のgit認証情報、またはダウンロード用のオプションの
GITHUB_TOKEN/GH_TOKENを介してアクセスできます。 - Gitフォールバックは、最初にHTTPSを試行し、次にSSHを試行します。
- https://github.com/openai/skills/tree/main/skills/.system のスキルはプリインストールされているため、ユーザーがそれらをインストールするのを手伝う必要はありません。尋ねられた場合は、その旨を説明してください。もしユーザーが強く希望する場合は、ダウンロードして上書きすることができます。
- インストール済みのアノテーションは
$CODEX_HOME/skillsから取得されます。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Skill Installer
Helps install skills. By default these are from https://github.com/openai/skills/tree/main/skills/.curated, but users can also provide other locations.
Use the helper scripts based on the task:
- List curated skills when the user asks what is available, or if the user uses this skill without specifying what to do.
- Install from the curated list when the user provides a skill name.
- Install from another repo when the user provides a GitHub repo/path (including private repos).
Install skills with the helper scripts.
Communication
When listing curated skills, output approximately as follows, depending on the context of the user's request: """ Skills from {repo}:
- skill-1
- skill-2 (already installed)
- ... Which ones would you like installed? """
After installing a skill, tell the user: "Restart Codex to pick up new skills."
Scripts
All of these scripts use network, so when running in the sandbox, request escalation when running them.
scripts/list-curated-skills.py(prints curated list with installed annotations)scripts/list-curated-skills.py --format jsonscripts/install-skill-from-github.py --repo <owner>/<repo> --path <path/to/skill> [<path/to/skill> ...]scripts/install-skill-from-github.py --url https://github.com/<owner>/<repo>/tree/<ref>/<path>
Behavior and Options
- Defaults to direct download for public GitHub repos.
- If download fails with auth/permission errors, falls back to git sparse checkout.
- Aborts if the destination skill directory already exists.
- Installs into
$CODEX_HOME/skills/<skill-name>(defaults to~/.codex/skills). - Multiple
--pathvalues install multiple skills in one run, each named from the path basename unless--nameis supplied. - Options:
--ref <ref>(defaultmain),--dest <path>,--method auto|download|git.
Notes
- Curated listing is fetched from
https://github.com/openai/skills/tree/main/skills/.curatedvia the GitHub API. If it is unavailable, explain the error and exit. - Private GitHub repos can be accessed via existing git credentials or optional
GITHUB_TOKEN/GH_TOKENfor download. - Git fallback tries HTTPS first, then SSH.
- The skills at https://github.com/openai/skills/tree/main/skills/.system are preinstalled, so no need to help users install those. If they ask, just explain this. If they insist, you can download and overwrite.
- Installed annotations come from
$CODEX_HOME/skills.