plugins marketplace
← All plugins

claude-code-superpowers

v1.0.0

24 elite skills across 5 layers: discipline, domain expertise, intelligence, coordination, and execution. Turn Claude Code into a proactive engineering partner.

Claude Code24 skills

by GadaaLabsMIT67updated 3 months ago

Source

git clone https://github.com/GadaaLabs/claude-code-on-steroids

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

claude-code-superpowers/
├── .claude-plugin/plugin.json
├── skills/arbiter/SKILL.md
├── skills/architect/SKILL.md
├── skills/ascend/SKILL.md
├── skills/blueprint/SKILL.md
├── skills/chronicle/SKILL.md
├── skills/commander/SKILL.md
├── skills/exodus/SKILL.md
├── skills/forge/SKILL.md
├── skills/gradient/SKILL.md
├── skills/horizon/SKILL.md
├── skills/hunter/SKILL.md
├── skills/ironcore/SKILL.md
├── skills/legion/SKILL.md
├── skills/nexus/SKILL.md
├── skills/oracle/SKILL.md
├── skills/pathfinder/SKILL.md
├── skills/phantom/SKILL.md
├── skills/prism/SKILL.md
├── skills/sculptor/SKILL.md
├── skills/seal/SKILL.md
├── skills/sentinel/SKILL.md
├── skills/tribunal/SKILL.md
├── skills/vault/SKILL.md
└── skills/vector/SKILL.md

Skills24

arbiterskills/arbiter/SKILL.md

Use when receiving code review feedback, before implementing any suggestion — requires technical verification and reasoned evaluation, not performative agreement or blind implementation

architectskills/architect/SKILL.md

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

ascendskills/ascend/SKILL.md

Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions

blueprintskills/blueprint/SKILL.md

Use when you have a spec or requirements for a multi-step task, before touching code

chronicleskills/chronicle/SKILL.md

Store and retrieve patterns from past work using semantic search; adds self-learning capability to Superpowers

commanderskills/commander/SKILL.md

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies

exodusskills/exodus/SKILL.md

Use when you have a written implementation plan to execute in a completely fresh isolated session — no context inheritance, clean slate execution with review checkpoints

forgeskills/forge/SKILL.md

Use when implementing any feature or bugfix, before writing implementation code

gradientskills/gradient/SKILL.md

ML-specific patterns for data pipelines, model training, MLOps, and evaluation — domain expertise for machine learning engineers

horizonskills/horizon/SKILL.md

Manage context window budget across long sessions — when to compress, what to give subagents, when to start fresh. Prevents silent quality degradation as conversations grow.

hunterskills/hunter/SKILL.md

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes

ironcoreskills/ironcore/SKILL.md

State machines, ISRs, RTOS, hardware abstraction, and timing analysis — domain expertise for electrical and embedded systems engineers

legionskills/legion/SKILL.md

Select optimal subagent topology (hierarchical, mesh, ring, star) based on task structure; adds Ruflo-style swarm intelligence to Superpowers

nexusskills/nexus/SKILL.md

RAG architectures, agent design patterns, prompt engineering, and LLM evaluation — domain expertise for AI application engineers

oracleskills/oracle/SKILL.md

Pre-task intelligence layer — classify complexity, select skill chain, search patterns, assign model tier. Run BEFORE any non-trivial task begins. Turns the system from reactive to proactive.

pathfinderskills/pathfinder/SKILL.md

Structured first-pass exploration of an unfamiliar codebase — what to read, in what order, what to map, what traps to find. Use when entering any new or inherited project before writing code.

phantomskills/phantom/SKILL.md

Use when executing implementation plans with independent tasks in the current session

prismskills/prism/SKILL.md

UI/UX design intelligence, accessibility, performance, SEO, and data visualization — domain expertise for web and app developers. Includes 67 UI styles, 25 chart types, font pairing, and UX guidelines.

sculptorskills/sculptor/SKILL.md

Use when creating new skills, editing existing skills, or verifying skills work before deployment — applies TDD to process documentation with the same Iron Law as FORGE

sealskills/seal/SKILL.md

Use when implementation is complete and all tests pass — guides branch completion through four structured options (merge, PR, keep, discard) with verification and worktree cleanup

sentinelskills/sentinel/SKILL.md

Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always

tribunalskills/tribunal/SKILL.md

Use when completing tasks, implementing major features, or before merging to verify work meets requirements

vaultskills/vault/SKILL.md

Use when starting feature work that needs isolation from the current workspace, or before executing implementation plans — creates isolated git worktrees with smart directory selection and safety verification

vectorskills/vector/SKILL.md

Select optimal AI model by task complexity — route to cheap/fast models for simple tasks, capable models for complex reasoning

Manifests1

.claude-plugin/plugin.json
{
  "name": "claude-code-superpowers",
  "description": "24 elite skills across 5 layers: discipline, domain expertise, intelligence, coordination, and execution. Turn Claude Code into a proactive engineering partner.",
  "version": "1.0.0",
  "author": {
    "name": "GadaaLabs",
    "email": "hello@gadaalabs.com"
  },
  "homepage": "https://github.com/GadaaLabs/claude-code-superpowers",
  "repository": "https://github.com/GadaaLabs/claude-code-superpowers",
  "license": "MIT",
  "keywords": [
    "skills",
    "tdd",
    "debugging",
    "collaboration",
    "best-practices",
    "workflows",
    "domain-expertise",
    "ml",
    "embedded",
    "ai-engineering"
  ]
}