/ ディレクトリ / プレイグラウンド / Anthropic Skills (Official)
● 公式 anthropics ⚡ 即起動

Anthropic Skills (Official)

作者 anthropics · anthropics/skills

Anthropic公式のリファレンススキルコレクション — SKILL.md形式とベストプラクティスのカノニカルな例示。

anthropics/skillsはSKILL.md形式の公式リファレンスリポジトリです。カノニカルな例(document-handling・web-design・slash-creatorなど)・スキル構造のリファレンスパターン・ベストプラクティステンプレートが含まれています。自分のスキルを構築するときの正解として扱ってください。

なぜ使うのか

主な機能

ライブデモ

実際の動作

準備完了

インストール

クライアントを選択

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "anthropic-skills-official": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/skills",
        "~/.claude/skills/anthropic"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "anthropic-skills-official": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/skills",
        "~/.claude/skills/anthropic"
      ],
      "_inferred": true
    }
  }
}

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "anthropic-skills-official": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/skills",
        "~/.claude/skills/anthropic"
      ],
      "_inferred": true
    }
  }
}

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "anthropic-skills-official": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/skills",
        "~/.claude/skills/anthropic"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop と同じ形式。Windsurf を再起動して反映。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "anthropic-skills-official",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/anthropics/skills",
        "~/.claude/skills/anthropic"
      ]
    }
  ]
}

Continue はマップではなくサーバーオブジェクトの配列を使用。

~/.config/zed/settings.json
{
  "context_servers": {
    "anthropic-skills-official": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/anthropics/skills",
          "~/.claude/skills/anthropic"
        ]
      }
    }
  }
}

context_servers に追加。保存時に Zed がホットリロード。

claude mcp add anthropic-skills-official -- git clone https://github.com/anthropics/skills ~/.claude/skills/anthropic

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: Anthropic Skills (Official)

カノニカルな例を読んでSKILL.md形式を学ぶ

👤 初めてスキルを書こうとしている開発者 ⏱ ~30 min beginner

使うタイミング: 推測ではなく洗練された例が欲しいとき。

フロー
  1. リファレンススキルを選ぶ
    Use anthropics/skills. Show me the document-handling skill in full. Walk me through its structure.✓ コピーしました
    → SKILL.mdのフィールドが説明される — name・description・instructions・resources
  2. 自分のドメインにマッピングする
    Adapt the structure to my domain (e.g. database-migrations). Show me the SKILL.md skeleton.✓ コピーしました
    → ドメインにマッピングされたスケルトン
  3. トリガーをテストする
    Add the new skill to ~/.claude/skills. Verify it triggers on the right prompts.✓ コピーしました
    → スキルが正しくアクティブになる

結果: Anthropicが推奨する方法で構造化された初めてのスキル。

注意点
  • 曖昧なdescriptionが誤トリガーの原因になる — descriptionはトリガーシグナルに特化させる。少ない方が良い

AnthropicのDocument-handlingスキルをPDF/DOCX作業に直接使う

👤 ドキュメントワークフローがある全ての人 ⏱ ~15 min beginner

使うタイミング: コミュニティフォークではなく、Anthropicがメンテナンスするスキルが欲しいとき。

フロー
  1. インストールする
    Clone anthropics/skills into ~/.claude/skills/anthropic.✓ コピーしました
    → スキルが検出可能になる
  2. 自然にトリガーする
    I have a 200-page PDF I need to summarize and extract tables from. Help.✓ コピーしました
    → ドキュメント処理スキルが構造化アプローチで起動する

結果: 公式スキルによってドキュメントワークフローが処理される。

組み合わせ: markitdown-mcp

チーム内部スキルのテンプレートとして活用する

👤 AIワークフローを標準化するプラットフォーム/DXチーム ⏱ ~60 min intermediate

使うタイミング: チーム全員が同じ方法でスキルを書いてほしいとき。

フロー
  1. フォークしてカスタマイズする
    Fork anthropics/skills. Add an internal skill following the same structure for our deploy process.✓ コピーしました
    → スタイルを踏襲した新しいスキルを含むフォーク済みリポジトリ
  2. 配布する
    Document the install path so the team can clone uniformly.✓ コピーしました
    → 内部ドキュメントが準備できた

結果: 公式スキルに根ざした、自社組織のスキル標準。

組み合わせ

他のMCPと組み合わせて10倍の力を

anthropic-skills-official + markitdown-mcp

ドキュメント処理スキル + MarkItDown MCPでエンドツーエンドのドキュメント対応

Use the doc-handling skill from anthropics/skills, with markitdown MCP to convert input PDFs.✓ コピーしました
anthropic-skills-official + wshobson-skills-skill

公式スキルとコミュニティスキルを重ねる

Anthropics for baseline, wshobson for breadth.✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
(reference skill bundle) trigger via natural language promptがdescriptionと一致したときClaudeが自動トリガー 0

コストと制限

運用コスト

APIクォータ
N/A
呼び出しあたりのトークン
スキルはトリガー時にロードされる。アイドル時のコストはゼロ
金額
無料 (Apache 2.0)
ヒント
チームが実際に必要とするスキルのみ使用する。未使用のものは削除してトリガーサーフェスをクリーンに保つ

セキュリティ

権限、シークレット、影響範囲

最小スコープ: filesystem-read
認証情報の保管: なし
データ送信先: なし

トラブルシューティング

よくあるエラーと対処法

スキルがカスタムスキルと競合する

スキル名はユニークでなければならない。カスタムスキルをリネームするか名前空間を追加する

スキルがトリガーされない

descriptionが重要 — Claudeがロードするタイミングをそれで判断する。ユーザーのインテントを表す言葉を使う

代替案

Anthropic Skills (Official) 他との比較

代替案代わりに使う場面トレードオフ
wshobson/skillsコミュニティ管理のより幅広いカバレッジが欲しいときカノニカルさは少ないが、バリエーションが多い
obra/superpowers強い意見を持つ小さくキュレートされたセットが欲しいとき異なるキュレーターの視点

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る