Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Superpowers Integration

How Claude Night Market plugins integrate with the superpowers skills.

Last synced: superpowers v5.0.7 (2026-03-31)

Overview

Many Night Market capabilities achieve their full potential when used alongside superpowers. While all plugins work standalone, superpowers provides foundational methodology skills that enhance workflows.

Since v4.0.0, superpowers enforces workflows via hard gates, DOT flowcharts, and mandatory checklists rather than simply describing them. Since v5.0.6, inline self-review replaces subagent review loops, cutting review overhead from ~25 minutes to ~30 seconds.

Installation

# Add the superpowers marketplace
/plugin marketplace add obra/superpowers

# Install the superpowers plugin
/plugin install superpowers@superpowers-marketplace

Dependency Matrix

PluginComponentTypeSuperpowers DependencyEnhancement
abstract/create-skillCommandbrainstormingSocratic questioning
abstract/create-commandCommandbrainstormingConcept development
abstract/create-hookCommandbrainstormingSecurity design
abstract/test-skillCommandtest-driven-developmentTDD methodology
sanctum/prCommandreceiving-code-review, requesting-code-reviewPR validation
sanctum/pr-reviewCommandreceiving-code-reviewPR analysis
sanctum/fix-prCommandreceiving-code-reviewComment resolution
sanctum/do-issueCommandsubagent-driven-development, dispatching-parallel-agents, using-git-worktreesFull workflow
spec-kit/speckit-clarifyCommandbrainstormingClarification
spec-kit/speckit-planCommandwriting-plansPlanning
spec-kit/speckit-tasksCommandexecuting-plans, systematic-debuggingTask breakdown
spec-kit/speckit-implementCommandexecuting-plans, systematic-debuggingExecution
spec-kit/speckit-analyzeCommandsystematic-debugging, verification-before-completionConsistency
spec-kit/speckit-checklistCommandverification-before-completionValidation
pensive/full-reviewCommandsystematic-debugging, verification-before-completionDebugging + evidence
parseltonguepython-testingSkilltest-driven-development (includes testing-anti-patterns)TDD + anti-patterns
imbuescope-guard, proof-of-workSkillbrainstorming, writing-plans, executing-plans, verification-before-completionAnti-overengineering, evidence-based completion
conserve/optimize-contextCommandsystematic-debugging (includes condition-based-waiting)Smart waiting
ministerissue-managementSkillsystematic-debuggingBug investigation

Superpowers Skills Referenced

SkillPurposeUsed By
brainstormingSocratic questioning with hard gates and visual companionabstract, spec-kit, imbue
test-driven-developmentRED-GREEN-REFACTOR TDD cycle (includes testing-anti-patterns)abstract, sanctum, parseltongue
receiving-code-reviewTechnical rigor for evaluating suggestionssanctum
requesting-code-reviewQuality gates for code submissionsanctum
writing-plansStructured planning with inline self-reviewspec-kit, imbue
executing-plansContinuous task execution (no longer batches)spec-kit
systematic-debuggingFour-phase framework (includes root-cause-tracing, defense-in-depth, condition-based-waiting)spec-kit, pensive, minister, conserve
verification-before-completionEvidence-based review standardsspec-kit, pensive, imbue
subagent-driven-developmentAutonomous subagent orchestration (mandatory on capable harnesses)sanctum
dispatching-parallel-agentsParallel task dispatch for 2+ independent taskssanctum
using-git-worktreesIsolated implementation in feature branchessanctum
finishing-a-development-branchBranch cleanup, merge strategy, and finalizationsanctum
writing-skillsSkill authoring with description trap guidanceabstract

Graceful Degradation

All Night Market plugins work without superpowers:

Without Superpowers

  • Commands: Execute core functionality
  • Skills: Provide standalone guidance
  • Agents: Function with reduced automation

With Superpowers

  • Commands: Enhanced methodology phases
  • Skills: Integrated methodology patterns
  • Agents: Full automation depth

Skill Consolidation Notes (v4.0.0+)

Several standalone skills were merged into parent skills:

Former StandaloneNow Bundled InAccess
testing-anti-patternstest-driven-developmentModule file within TDD skill
root-cause-tracingsystematic-debuggingModule file within debugging skill
defense-in-depthsystematic-debuggingModule file within debugging skill
condition-based-waitingsystematic-debuggingModule file within debugging skill

Deprecated Commands

These superpowers slash commands show deprecation notices since v5.0.0. Use the skill equivalents:

DeprecatedReplacement
/brainstormSkill(superpowers:brainstorming)
/write-planSkill(superpowers:writing-plans)
/execute-planSkill(superpowers:executing-plans)

Key Patterns

Inline Self-Review (v5.0.6)

Superpowers replaced subagent review loops with inline self-review checklists. This cut review time from ~25 minutes to ~30 seconds with comparable defect detection. Night Market review workflows (pensive, sanctum, imbue) should follow this pattern when delegating to superpowers.

SUBAGENT-STOP Gate

Superpowers skills include <SUBAGENT-STOP> blocks that prevent subagents from activating full skill workflows. Night Market dispatch patterns (sanctum:do-issue, conserve:clear-context) should be aware of this when delegating work to subagents with superpowers installed.

Instruction Priority Hierarchy

Superpowers enforces: User instructions > Superpowers skills > Default system prompt. Night Market commands respect this ordering when combining skill invocations.

Context Isolation

All superpowers delegation skills now scope subagent context explicitly. Night Market’s parallel execution patterns should follow the same principle.

Example: /do-issue Workflow

Without Superpowers

1. Parse issue
2. Analyze codebase
3. Implement fix
4. Create PR

With Superpowers

1. Parse issue
2. [using-git-worktrees] Create isolated worktree
3. [subagent-driven-development] Plan subagent tasks
4. [dispatching-parallel-agents] Dispatch parallel work
5. [writing-plans] Create structured plan
6. [test-driven-development] Write failing test
7. Implement fix
8. [requesting-code-review] Inline self-review
9. [finishing-a-development-branch] Cleanup and merge
10. Create PR

For the full Night Market experience:

# 1. Add marketplaces
/plugin marketplace add obra/superpowers
/plugin marketplace add athola/claude-night-market

# 2. Install superpowers (foundational)
/plugin install superpowers@superpowers-marketplace

# 3. Install Night Market plugins
/plugin install sanctum@claude-night-market
/plugin install spec-kit@claude-night-market
/plugin install pensive@claude-night-market

Checking Integration

Verify superpowers is available:

/plugin list
# Should show superpowers@superpowers-marketplace

Commands will automatically detect and use superpowers when available.