/ 目錄 / 演練場 / claude-skills
● 社群 alirezarezvani ⚡ 即開即用

claude-skills

作者 alirezarezvani · alirezarezvani/claude-skills

235+ 個生產就緒的技能,涵蓋工程、產品、行銷、合規和高層顧問——一個完整的全端團隊,一次克隆即可取得。

一個龐大的精選 Agent 技能資料庫,涵蓋 9 個領域:工程(82 個技能)、行銷(44 個)、高層顧問(34 個)、產品(16 個)、法規/品質(14 個)、PM(9 個)等。POWERFUL 等級的 25 個技能提供生產等級的工作流程,例如 RAG 管道、資料庫設計和事故應變。支援 Claude Code、Codex、Gemini CLI、Cursor 等 12 個平台。

為什麼要用

核心特性

即時演示

實際使用效果

claude-skill.replay ▶ 就緒
0/0

安裝

選擇你的客戶端

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

開啟 Claude Desktop → Settings → Developer → Edit Config。儲存後重啟應用。

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

Cursor 使用與 Claude Desktop 相同的 mcpServers 格式。專案級設定優先於全域。

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

點擊 Cline 側欄中的 MCP Servers 圖示,然後選 "Edit Configuration"。

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

格式與 Claude Desktop 相同。重啟 Windsurf 生效。

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

Continue 使用伺服器物件陣列,而非映射。

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

加入 context_servers。Zed 儲存後熱重載。

claude mcp add claude-skill -- git clone https://github.com/alirezarezvani/claude-skills ~/.claude/skills/claude-skills

一行命令搞定。用 claude mcp list 驗證,claude mcp remove 移除。

使用場景

實戰用法: claude-skills

在確定技術架構前先進行架構審查

👤 正在建立新服務的技術主管 ⏱ ~30 min intermediate

何時使用: 你即將為新產品選擇框架和資料庫,希望先進行合理性驗證。

步驟
  1. 描述服務需求
    Use the engineering skills. We need a real-time collab API — 10k concurrent users, document sync, presence. Compare Node+WebSocket vs Elixir+Phoenix vs Go+gRPC.✓ 已複製
    → 根據各技能中真實的取捨做出比較分析
  2. 探索風險
    For the choice you'd recommend, what fails at 100k users?✓ 已複製
    → 具體的擴展瓶頸,而非泛泛而談

結果: 一份包含取捨分析和擴展風險的決策文件。

注意事項
  • 技能可能過度推薦其最熟悉的框架 — 要求它明確說明不選擇每個選項的原因

執行生產環境停機的事故應變手冊

👤 處理線上事故的值班工程師 ⏱ ~15 min advanced

何時使用: 生產環境出現緊急問題,你需要在不慌亂的情況下進行結構化的問題排查。

步驟
  1. 開啟事故流程
    Use the incident-response skill. Symptoms: API 500s spiking in US-east, started 10 min ago.✓ 已複製
    → Claude 引導進行結構化診斷——分類樹、日誌查詢、緩解選項
  2. 後續事後檢討
    Now draft the postmortem template using what we learned.✓ 已複製
    → 已填寫完整、採用無責任歸咎框架的範本

結果: 縮短緩解時間,並產出可信的事後檢討報告。

注意事項
  • 技能在不了解你的技術架構的情況下提出通用緩解方案 — 一開始就說明你的架構——例如「我們使用 AWS ECS + RDS Postgres」
搭配使用: aws · sentry

使用 CTO 技能對董事會簡報進行壓力測試

👤 準備募資的創辦人和 CTO ⏱ ~45 min advanced

何時使用: 你已準備好簡報的技術部分,希望獲得資深 CTO 角度的紅隊回饋。

步驟
  1. 分享投影片
    Use the CTO advisory skill. Here's our tech architecture slide — what would a skeptical board member ask?✓ 已複製
    → 針對投影片內容提出具體、犀利的問題
  2. 準備回答
    For each question, draft a crisp answer with data we'd need to back it up.✓ 已複製
    → 可供實際演練的準備筆記

結果: 針對董事會議技術部分演練完成的問答稿。

注意事項
  • 問題感覺過於通用 — 提供你實際的架構文件,而非只是簡報摘要

組合

與其他 MCP 搭配,撬動十倍槓桿

claude-skill + github

工程技能提出變更方案;GitHub MCP 建立 PR

Use the backend skill to design the refactor, then open a PR in our repo with the plan as the description.✓ 已複製
claude-skill + filesystem

技能產出文件;filesystem 將其儲存至專案中

Save the architecture review output to docs/architecture/ and create a README index.✓ 已複製

工具

此 MCP 暴露的能力

工具輸入參數何時呼叫成本
Engineering skills technical question or design brief 後端、前端、DevOps、資安相關工作 0
Marketing skills campaign or content brief 內容創作、SEO、CRO、成長相關工作 0
C-Level advisory skills strategic question 董事會、募資、高階主管招募 0
POWERFUL Tier skills complex scenario (RAG, DB, incident) 當基本技能不夠用時 0
Regulatory/quality skills compliance question 受監管的產業 0

成本與限制

運行它的成本

API 配額
None
每次呼叫 Token 數
依技能差異極大;大型技能會載入 5-15k tokens 的參考資料
費用
免費——技能皆為本機端
提示
技能庫太龐大,不適合讓 Claude 自由瀏覽。請在提示中明確指定技能名稱或領域。

安全

權限、密鑰、影響範圍

憑證儲存: 無需憑證——技能內容全為提示詞
資料出站: 技能本身不會有任何資料外傳

故障排查

常見錯誤與修復

Claude picks the wrong skill for a task

依領域明確指定:例如「使用 marketing > SEO skill」。技能數量超過 235 個,自動路由的準確度有限。

SKILL.md loads are too large

每次只載入一個技能;不要嘗試在同一個提示中載入多個領域。

Python CLI helpers not found

部分技能需要可選的 Python 工具——請查看該技能的設定說明章節。

驗證: ls ~/.claude/skills/claude-skills/<skill>/scripts/

替代方案

claude-skills 對比其他方案

替代方案何時用它替代權衡
claude-skill-2 (Jeffallan)你只需要全端開發技能(66 個),不需要行銷/合規相關內容範圍較窄,不易讓人不知所措
awesome-claude-skill你想瀏覽技能,而非安裝一個大型套件目錄形式 vs 可安裝的套件
Single-purpose skills (terraform, playwright, tutor)你只有一個特定的問題需要解決聚焦更明確

更多

資源

📖 閱讀 GitHub 上的官方 README

🐙 查看未解決的 issue

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