From superpowers
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: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):
Use the AskUserQuestion tool for all questions during brainstorming. This provides a better UX than plain text questions.
Example - Understanding requirements:
{
"questions": [{
"question": "What level of error handling do you need?",
"header": "Errors",
"multiSelect": false,
"options": [
{ "label": "Basic (Recommended)", "description": "Simple try/catch, log errors, show user-friendly messages" },
{ "label": "Comprehensive", "description": "Retry logic, error boundaries, detailed error states" },
{ "label": "Minimal", "description": "Let errors bubble up, handle at top level only" }
]
}]
}
Example - Exploring approaches:
{
"questions": [{
"question": "Which data fetching approach should we use?",
"header": "Data",
"multiSelect": false,
"options": [
{ "label": "React Query (Recommended)", "description": "Built-in caching, loading states, and refetching. Best for most cases." },
{ "label": "SWR", "description": "Lighter weight, similar features. Good if bundle size is critical." },
{ "label": "Custom hooks", "description": "Full control but more code to maintain. Only if you have unique requirements." }
]
}]
}
When to use multiSelect:
false (default): Single choice decisions like "which approach" or "what style"true: When user can pick multiple items like "which features to include"npx claudepluginhub smithclay/superpowersCreates 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.