/ 目錄 / 演練場 / 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 推薦的方式結構化。

注意事項
  • 模糊的描述 = 誤觸發 — 讓描述對觸發信號具體;少即是多

直接使用 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 搭配,撬動十倍槓桿

anthropic-skills-official + markitdown-mcp

文件處理技能 + MarkItDown MCP 端到端處理文件

anthropic-skills-official + wshobson-skills-skill

疊加官方技能和社群技能

工具

此 MCP 暴露的能力

工具輸入參數何時呼叫成本
(reference skill bundle) trigger via natural language 當提示與描述相符時,Claude 自動觸發 0

成本與限制

運行它的成本

API 配額
不適用
每次呼叫 Token 數
技能在觸發時載入;閒置費用為零
費用
免費(Apache 2.0)
提示
只使用團隊實際需要的技能;移除未使用的技能以保持觸發介面整潔

安全

權限、密鑰、影響範圍

最小權限: filesystem-read
憑證儲存:
資料出站:

故障排查

常見錯誤與修復

技能與自訂技能衝突

技能名稱必須唯一;重新命名或為你的自訂技能加命名空間

技能未觸發

描述很重要——這是 Claude 決定何時載入的依據。匹配用戶意圖詞語。

替代方案

Anthropic Skills (Official) 對比其他方案

替代方案何時用它替代權衡
wshobson/skills你想要更廣泛的社群維護覆蓋較不標準;更多多樣性
obra/superpowers帶有強烈主見的較小精選集不同策展人的視角

更多

資源

📖 閱讀 GitHub 上的官方 README

🐙 查看未解決的 issue

🔍 瀏覽全部 400+ MCP 伺服器和 Skills