/ 目錄 / 演練場 / superpowers
● 社群 obra ⚡ 即開即用

superpowers

作者 obra · obra/superpowers

obra 精選的進階使用者技能套件——git、除錯、規劃和提示工藝的有主見工作流程。

obra/superpowers(由前 Anthropic 員工 Jesse Vincent 製作)為 Claude Code 打包了一組高槓桿技能:git 習慣、除錯紀律、規劃迴圈,以及有效與 Claude 協作的元技能。比 wshobson 家族更小且更有主見——如果你信任策展人的品味,就選這個。

為什麼要用

核心特性

即時演示

實際使用效果

就緒

安裝

選擇你的客戶端

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

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

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

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

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

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

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

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

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

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

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

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

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

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

使用場景

實戰用法: superpowers

在撰寫任何程式碼前規劃模糊的功能

👤 跳到程式碼太快的開發者 ⏱ ~45 min intermediate

何時使用: 功能模糊,從強制反思中獲益。

前置條件
  • 已安裝技能 — git clone https://github.com/obra/superpowers ~/.claude/skills/superpowers
步驟
  1. 觸發規劃技能
    Apply the planning skill. Feature: per-user rate limiting that scales to 10k req/s.✓ 已複製
    → 技能詢問約束條件、成功標準、替代方案
  2. 迭代計畫
    Push back on each assumption. What would Linus reject?✓ 已複製
    → 帶有明確風險的更強計畫
  3. 轉化為第一個 PR
    What's the smallest first PR that proves the plan?✓ 已複製
    → MVP 形狀的第一步

結果: 一個你願意在設計審查中辯護的計畫,而非只是猜測。

乾淨地從糾纏的 git 狀況中恢復

👤 陷入「git stash 破產」的開發者 ⏱ ~30 min advanced

何時使用: 你遇到了糟糕的合併、遺失的提交或 rebase 失敗。

步驟
  1. 診斷
    Apply the git-rescue skill. Show me what's salvageable: reflog, stash, dangling commits.✓ 已複製
    → 可恢復狀態的清單
  2. 重建
    Plan the recovery. Run only after I confirm.✓ 已複製
    → 帶有解釋的提議 git 操作序列
  3. 驗證
    After recovery, confirm tree is what I expected.✓ 已複製
    → 最終樹狀結構符合預期

結果: 恢復的分支狀態,不遺失工作。

在接受前對 Claude 自己的輸出執行自我審查

👤 對 Claude 信任過多或過少的開發者 ⏱ ~15 min beginner

何時使用: 你想讓模型在你審查之前先審計自己。

步驟
  1. 觸發自我審查
    Apply self-review skill on the diff you just produced. Be harsh.✓ 已複製
    → 具體的疑慮,而非通用的「看起來不錯」
  2. 處理發現
    Fix every sev-1 finding. Ignore sev-3 if it's nitpicks.✓ 已複製
    → 更緊湊的差異

結果: 更高品質的輸出,無需你成為唯一的批評者。

搭配使用: wshobson-skills-skill

組合

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

superpowers-skill + wshobson-agents-skill

用 superpowers 規劃,用 wshobson agents 執行

superpowers-skill + wshobson-skills-skill

兩套觀點疊加

工具

此 MCP 暴露的能力

工具輸入參數何時呼叫成本
planning fuzzy feature 寫程式前的反思 0
git-rescue broken state Git 緊急情況 0
self-review claude output 接受前的閘控 0
debug-loop bug 有條不紊的 bug 追查 0

成本與限制

運行它的成本

API 配額
不適用——本地
每次呼叫 Token 數
技能在這裡較簡潔——比較大的技能集每次觸發費用更低
費用
免費(MIT)
提示
這是較輕量的技能集——每個技能的 token 比 wshobson 少

安全

權限、密鑰、影響範圍

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

故障排查

常見錯誤與修復

技能未被載入

複製路徑必須符合 ~/.claude/skills/superpowers;檢查 claude config show

與 wshobson 觸發衝突

技能按描述自動路由;若兩者爭搶相同意圖,重新命名其中一個

替代方案

superpowers 對比其他方案

替代方案何時用它替代權衡
wshobson/skills你想要更廣泛的覆蓋更大但較不精選
anthropics/skills (official)Anthropic 官方入門技能集官方基準;superpowers 增加主見

更多

資源

📖 閱讀 GitHub 上的官方 README

🐙 查看未解決的 issue

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