narwhalishus/superpowered-teams
4 stars · Last commit 2026-06-06
Parallel team execution for superpowers plans via Claude Code Agent Teams
README preview
# superpowered-teams Parallel team execution for [superpowers](https://github.com/obra/superpowers) plans via Claude Code's Agent Teams feature. A team fitness check at plan time, a persistent-specialist orchestrator at execution time, and graceful fallback to superpowers' standard serial flow when the work doesn't warrant a team. ## What this plugin adds Two user-invocable skills: - **`writing-plans-for-teams`** — runs a four-criterion fitness check on a spec. If the work benefits from parallelism, writes a team-format plan (Wave Analysis, per-task metadata, Lifetime Plan). If not, hands off to `superpowers:writing-plans` so the serial flow continues unchanged. - **`agent-team-driven-development`** — executes team-format plans by orchestrating persistent specialist implementers through `TeamCreate` / `SendMessage` / `TaskCreate`, running two-stage review (spec compliance, then code quality) per task, and writing a journal snapshot at completion. Together they let a single `/brainstorm` conversation fan out to a team when the feature is large enough, and collapse back to a subagent-driven flow when it isn't — with the decision made automatically by the fitness check. ## How it differs from what's already in superpowers | Need | Skill to use | |---|---| | 2+ independent one-shot tasks, no shared state | `superpowers:dispatching-parallel-agents` |