Agent Workflow Skills

Superpowers

An open-source skills framework that teaches Claude Code, Codex, Cursor, Gemini CLI, OpenCode, and other agents to follow explicit design, planning, TDD, debugging, verification, and review workflows.

料金
Open source
プラットフォーム
Claude Code, Codex, Cursor, Gemini CLI, OpenCode, Repo workflows
公式サイト
https://github.com/obra/superpowers
無料アクセス評価
Superpowers は GitHub の open-source project で、対応する AI coding tools の skills workflow layer として使えます。
注意
Superpowers 自体は model quota を提供しません。Claude Code、Codex、Cursor、Gemini CLI、OpenCode など対応 agent への access が必要です。

私の評価

Superpowers は Claude Code 周辺でかなり重要な project です。理由は、より強い model を作ろうとしているのではなく、agent を規律ある engineer のように動かそうとしているからです。

私の評価:2026 年の AI coding の失敗は、model が code を書けないことよりも、task framing が弱い、design を飛ばす、test-first loop がない、debug が推測になる、verification がない、review しにくい大きな diff が残ることから起きます。Superpowers はその層を直接扱います。

何なのか

Superpowers は obra/superpowers の open-source skills framework です。Claude Code、Codex、Cursor、Gemini CLI、OpenCode などの coding agents に、再利用可能な workflow skills を与えるための project です。

Coding Agent Tools の分類では、Superpowers は specification layer と agent execution layer の間に置くべきです。Claude CodeCodex の代替ではありません。これらの agents に、どう作業すべきかを教える workflow layer です。

Claude Code で重要な理由

Claude Code は repository を読み、files を編集し、commands を実行し、diff を残すことにすでに強いです。弱点は action そのものではなく、その action が staged、inspectable、reviewable かどうかです。

Superpowers は Claude Code の工程 gate を明示します。

実務上は、Claude Code が execution engine なら、Superpowers は process harness です。Claude Code の default operating mode を強くします。

Codex との関係

Codex には Skills と Automations の方向がありますが、Superpowers の考え方はそのまま使えます。Codex は acceptance criteria、proof commands、review expectations を持つ task brief を受け取る時に強いです。Superpowers-style workflows は、その task contract を作るのに向いています。

cloud tasks や connected-host Codex work では特に重要です。human reviewer は全ステップを見ていない場合があるため、plan、verification evidence、review summary が必要になります。

最初に使うべき Skills

全部を入れるより、今の失敗モードから選ぶべきです。

いつ使うか

Superpowers は real product work、refactors、bug fixes、migrations、test recovery、frontend implementation、documentation systems、review cost が高い変更で使います。

小さな copy edit には full workflow は不要です。目的は ceremony ではありません。risk がある作業で agent に evidence を作らせることです。

Claude Code での使い方

安全な pattern は次の通りです。

  1. GitHub project から Superpowers を install または enable する。
  2. CLAUDE.md などの agent memory に project rules を置く。
  3. 新しい feature work は brainstorming または planning から始める。
  4. completion 前に verification を要求する。
  5. final diff は通常の engineering review として扱う。

これで project context、workflow skill、agent execution、proof command、human review が一本の chain になります。

Coding Agent Tools の結論

Superpowers は Claude Code の重要な内鏈先にする価値があります。agent が失敗しやすい瞬間で behavior を変えるからです。Codex、Cursor、Gemini CLI、OpenCode、opencode と並べても、portable skills layer として意味があります。

私の結論:output が maintainable、reviewable、explainable である必要があるなら Superpowers を使う。task が本当に trivial な時だけ省略する。

Source Notes