From superpowers-dex
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-dex:brainstormingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help turn ideas into fully formed designs and specs through natural collaborative dialogue.
Help turn ideas into fully formed designs and specs through natural collaborative dialogue.
Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design in small sections (200-300 words), checking after each section whether it looks right so far.
Understanding the idea:
Exploring approaches:
Presenting the design:
Documentation:
docs/plans/YYYY-MM-DD-<topic>-design.mdImplementation (if continuing):
dex create "<feature-name>" --description "Design: docs/plans/YYYY-MM-DD-<topic>-design.md\n<2-3 sentence summary>"
dex create "Implement <component>" --parent <epic-id> --description "<key requirements>"
REQUIRED: Use Claude Code's native task tools (v2.1.16+) to create structured tasks during the design process.
After each design section is validated by the user, create a task:
TaskCreate:
subject: "Implement [Component Name]"
description: |
[Key requirements from the design section]
Acceptance Criteria:
- [ ] [Criterion from design]
- [ ] [Criterion from design]
activeForm: "Implementing [Component Name]"
Track all task IDs for dependency setup.
Set up dependency relationships:
TaskUpdate:
taskId: [dependent-task-id]
addBlockedBy: [prerequisite-task-ids]
Run TaskList to display the complete task structure with dependencies.
Include task IDs in the design document for reference.
After design is validated and committed, check if a dex epic already exists:
dex list --query "<feature-name>" --json 2>/dev/null
If no epic exists, create one with component tasks (see "Implementation" section above). If epic exists, verify tasks align with the validated design.
npx claudepluginhub abhishekray07/superpowers-dexCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.