From superpowers-plus
Executes implementation plans by dispatching fresh subagents per independent task, with two-stage reviews for spec compliance and code quality, plus parallel dispatch option.
npx claudepluginhub bordenet/superpowers-plus --plugin superpowers-plusThis skill uses the workspace's default tool permissions.
- Executing implementation plans with independent tasks in the current session
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
writing-plans), parallel session execution (executing-plans)Execute plan by dispatching fresh subagent per task, with two-stage review after each: spec compliance first, then code quality.
Why: Fresh subagent per task = isolated context, no pollution. You construct exactly what they need.
For tasks with sufficient isolation (different files, independent interfaces), the Execution Conductor can dispatch implementers in parallel. See references/parallel-dispatch-mode.md for full protocol.
Activation: Fan-out eligibility rubric score ≥ 6 per task pair (file overlap, interface coupling, test isolation, data model coupling). Cost cap: 2.5× serial. Default: Sequential (existing behavior).
superpowers:finishing-a-development-branch| Task type | Model tier | Signal |
|---|---|---|
| Mechanical (1-2 files, clear spec) | Cheap/fast | Complete spec, isolated scope |
| Integration (multi-file) | Standard | Cross-file coordination |
| Architecture/design/review | Most capable | Judgment, broad understanding |
think-twice for fresh perspective before re-dispatchNever force retry without changes. If stuck, something must change.
references/parallel-dispatch-mode.md)| Skill | Role |
|---|---|
superpowers:using-git-worktrees | Set up isolated workspace (REQUIRED) |
superpowers:plan-and-execute | Creates the plan this executes |
superpowers:finishing-a-development-branch | After all tasks complete |
superpowers:executing-plans | Alternative: parallel session execution |
Implement task 3: "Add retry logic to API client."
Files: src/api/client.ts (main), test/api/client.test.ts (tests).
Constraints: max 3 retries, exponential backoff, no new dependencies.
Reply DONE, DONE_WITH_CONCERNS, NEEDS_CONTEXT, or BLOCKED.
| Failure | Fix |
|---|---|
| Subagent given plan file path instead of full text | Re-dispatch with complete task text inline |
| Skipped spec compliance review, went straight to quality | Go back — spec compliance THEN quality, order matters |
| Parallel implementers caused merge conflicts | Never dispatch parallel implementers — sequential only |