From superpowers-plus
Orchestrates multi-step skill chains for tasks like 'build X' or 'fix bugs', auto-detecting sequences, applying quality gates between steps, and retrying failures.
npx claudepluginhub bordenet/superpowers-plus --plugin superpowers-plusThis skill uses the workspace's default tool permissions.
> **Wrong skill?** Single action -> invoke directly. Planning only -> plan-and-execute.
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.
Wrong skill? Single action -> invoke directly. Planning only -> plan-and-execute.
Announce at start: "I am using the autonomous-chain-controller to orchestrate the full workflow."
# Example: Chain selection for "build login page"
echo "Task: build login page"
echo "Complexity: MEDIUM (5 skills)"
echo "Chain: brainstorming -> debate -> plan-and-execute -> TDD -> verify"
echo "Gate 1: brainstorming output has >=3 options? YES"
echo "Gate 2: debate scored all options? YES"
echo "Gate 3: plan has phases? YES -> continue"
Task: [request] Complexity: LOW (1-2) | MEDIUM (3-5) | HIGH (6+) Chain: [ordered skill list]
| Task Type | Chain |
|---|---|
| New feature | brainstorming -> debate -> plan-and-execute -> TDD -> review -> verify |
| Bug fix | systematic-debugging -> TDD -> review -> verify |
| Distributed incident | debug-conductor -> (investigators forked) -> evidence-adjudicator -> failure-autopsy |
| Refactor | blast-radius-check -> plan -> TDD -> review -> verify |
| Content | brainstorming -> plan -> harsh-review -> verify |
| Investigation | adversarial-search -> investigation-state -> autopsy |
Between EVERY skill:
Gate failure: retry < 2 -> retry / retry >= 2 -> think-twice / retry >= 3 -> HALT
All skills done + gates passed + verification + TODO sweep.
| Detector | Signal | Action |
|---|---|---|
| Premature completion | Remaining skills | Block -> resume |
| TODO amnesia | Unlogged items | Pause -> extract -> resume |
| Branch drift | Wrong branch | HALT -> fix -> resume |
| Gate cascade | 3x same failure | HALT -> autopsy -> escalate |
| Scope creep | >8 skills | Split into sub-chains |
| Anti-Pattern | Detection | Correction |
|---|---|---|
| Skipped gate | No between-skill check | Add gate, re-run previous skill |
| Wrong chain selected | Output mismatches task | Re-classify, new chain |
| Premature completion | Skills remaining | Block until all complete |
| Scope creep | >8 skills in chain | Split into sub-chains |
| Failure | Detection | Recovery |
|---|---|---|
| Wrong chain | Output mismatch | Re-analyze, new chain |
| Chain too long | >8 skills | Split into 2 sub-chains |
| Missing skill | Reference missing | Skip + log TODO |
| Retry loop | Repeated failure | think-twice, then escalate |