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
- 無料アクセス評価
- 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 Code や Codex の代替ではありません。これらの agents に、どう作業すべきかを教える workflow layer です。
Claude Code で重要な理由
Claude Code は repository を読み、files を編集し、commands を実行し、diff を残すことにすでに強いです。弱点は action そのものではなく、その action が staged、inspectable、reviewable かどうかです。
Superpowers は Claude Code の工程 gate を明示します。
- brainstorming:実装前に task、scope、options を明確にする。
- writing-plans:編集前に steps、boundaries、risks、verification commands を書く。
- test-driven-development:behavior を先に test として表現する。
- systematic-debugging:失敗時に guess ではなく root cause を追う。
- verification-before-completion:完了宣言の前に証拠を要求する。
- requesting-code-review と receiving-code-review:review と review 対応を workflow にする。
- using-git-worktrees:parallel agent work や risky changes を隔離する。
実務上は、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
全部を入れるより、今の失敗モードから選ぶべきです。
- agent が早く coding しすぎるなら brainstorming と writing-plans。
- 失敗を推測で直すなら systematic-debugging。
- 証拠なしで done と言うなら verification-before-completion。
- diff が merge しにくいなら using-git-worktrees と review 系 skills。
- product intent が drift するなら OpenSpec と Skills Matrix と組み合わせる。
いつ使うか
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 は次の通りです。
- GitHub project から Superpowers を install または enable する。
CLAUDE.mdなどの agent memory に project rules を置く。- 新しい feature work は brainstorming または planning から始める。
- completion 前に verification を要求する。
- 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
- Superpowers の公式 repository は obra/superpowers です。
- project は Superpowers を Claude Code、Codex、Cursor、Gemini CLI、OpenCode などの agentic coding tools 向け skills framework として説明しています。
- Coding Agent Tools の Claude Code page は、GitHub に直接出す前にこの站内 page へリンクし、workflow layer としての位置づけを説明します。