Skip to content
forked from obra/superpowers

An agentic skills framework & software development methodology that works.

License

Notifications You must be signed in to change notification settings

Detair/wolfpowers

 
 

Repository files navigation

Wolfpowers

This is a personal testing fork. Not intended for general use. If you want the real thing, use superpowers.

A fork of superpowers by Jesse Vincent, modified to experiment with model pinning — assigning specific Claude models (Sonnet or Opus) to specific subagent roles. This exists solely to test whether pinning Sonnet to implementation and Opus to review improves the cost/quality tradeoff.

What Changed From Superpowers

The only substantive change is model assignments in the three skills that dispatch subagents:

subagent-driven-development

Role Model
Implementer sonnet
Spec Compliance Reviewer sonnet
Code Quality Reviewer opus
Final Code Reviewer opus

dispatching-parallel-agents

Task Type Model
Implementation / Fix sonnet
Investigation / Debug sonnet
Architecture / Analysis opus
Review / Audit opus

requesting-code-review

Role Model
Code Reviewer opus

The rationale: Sonnet is fast and cheap for focused code generation. Opus catches subtle issues that matter most during review. TDD and two-stage review already provide quality gates, so the implementer doesn't need to be the most expensive model.

Namespace

All superpowers: skill references are renamed to wolfpowers: so the two plugins don't conflict.

Install (Claude Code)

Run these two slash commands in Claude Code:

/plugin marketplace add detair/wolfpowers
/plugin install wolfpowers@wolfpowers

Then restart your session.

Other Platforms

Cursor, Codex, OpenCode

Cursor:

/plugin-add wolfpowers

Codex:

Fetch and follow instructions from https://raw.githubusercontent.com/detair/wolfpowers/refs/heads/main/.codex/INSTALL.md

OpenCode:

Fetch and follow instructions from https://raw.githubusercontent.com/detair/wolfpowers/refs/heads/main/.opencode/INSTALL.md

How Superpowers Works

For full documentation on the workflow, skills, and philosophy, see the superpowers README and Jesse's blog post.

The short version: superpowers is a skills-based workflow system that enforces brainstorming before coding, TDD, systematic debugging, subagent-driven development with two-stage review, and git worktree isolation. Skills activate automatically — you don't invoke them manually.

Keeping Up With Superpowers

This fork tracks superpowers upstream. To pull in new superpowers releases:

git remote add upstream https://github.com/obra/superpowers.git
git fetch upstream
git merge upstream/main

Then re-apply the model pinning and namespace changes if needed.

License

MIT License - see LICENSE file for details.

Credits

All credit for the skills system, workflow design, and philosophy goes to Jesse Vincent and the superpowers contributors. This fork only adds model pinning on top.

About

An agentic skills framework & software development methodology that works.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

No contributors

Languages

  • Shell 76.2%
  • JavaScript 12.3%
  • Python 5.7%
  • TypeScript 4.3%
  • Batchfile 1.5%