Brainstorming @obra
universalsonnetSkillYou MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Install
curl -o ~/.claude/skills/brainstorming/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/brainstorming/SKILL.mdDescription
Brainstorming Ideas Into Designs
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 and get user approval.
<HARD-GATE> Do NOT invoke any implementation skill, write any code, scaffold any project, or take any implementation action until you have presented a design and the user has approved it. This applies to EVERY project regardless of perceived simplicity. </HARD-GATE>Anti-Pattern: "This Is Too Simple To Need A Design"
Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are where unexamined assumptions cause the most wasted work. The design can be short (a few sentences for truly simple projects), but you MUST present it and get approval.
Checklist
You MUST create a task for each of these items and complete them in order:
- Explore project context — check files, docs, recent commits
- Offer visual companion (if topic will involve visual questions) — this is its own message, not combined with a clarifying question. See the Visual Companion section below.
- Ask clarifying questions — one at a time, understand purpose/constraints/success criteria
- Propose 2-3 approaches — with trade-offs and your recommendation
- Present design — in sections scaled to their complexity, get user approval after each section
- Write design doc — save to
docs/superpowers/specs/YYYY-MM-DD-<topic>-design.mdand commit - Spec self-review — quick inline check for placeholders, contradictions, ambiguity, scope (see below)
- User reviews written spec — ask user to review the spec file before proceeding
- Transition to implementation — invoke writing-plans skill to create implementation plan
Process Flow
The terminal state is invoking writing-plans. Do NOT invoke frontend-design, mcp-builder, or any other implementation skill. The ONLY skill you invoke after brainstorming is writing-plans.
The Process
Understanding the idea:
- Check out the current project state first (files, docs, recent commits)
- Before asking detailed questions, assess scope: if the request describes multiple independent subsystems (e.g., "build a platform with chat, file storage, billing, and analytics"), flag this immediately. Don't spend questions refining details of a project that needs to be decomposed first.
- If the project is too large for a single spec, help the user decompose into sub-projects: what are the independent pieces, how do they relate, what order should they be built? Then brainstorm the first sub-project through the normal design flow. Each sub-project gets its own spec → plan → implementation cycle.
- For appropriately-scoped projects, ask questions one at a time to refine the idea
- Prefer multiple choice questions when possible, but open-ended is fine too
- Only one question per message - if a topic needs more exploration, break it into multiple questions
- Focus on understanding: purpose, constraints, success criteria
Exploring approaches:
- Propose 2-3 different approaches with trade-offs
- Present options conversationally with your recommendation and reasoning
- Lead with your recommended option and explain why
Presenting the design:
- Once you believe you understand what you're building, present the design
- Scale each section to its complexity: a few sentences if straightforward, up to 200-300 words if nuanced
- Ask after each section whether it looks right so far
- Cover: architecture, components, data flow, error handling, testing
- Be ready to go back and clarify if something doesn't make sense
Design for isolation and clarity:
- Break the system into smaller units that each have one clear purpose, communicate through well-defined interfaces, and can be understood and tested independently
- For each unit, you should be able to answer: what does it do, how do you use it, and what does it depend on?
- Can someone understand what a unit does without reading its internals? Can you change the internals without breaking consumers? If not, the boundaries need work.
- Smaller, well-bounded units are also easier for you to work with - you reason better about code you can hold in context at once, and your edits are more reliable when files are focused. When a file grows large, that's often a signal that it's doing too much.
Working in existing codebases:
- Explore the current structure before proposing changes. Follow existing patterns.
- Where existing code has problems that affect the work (e.g., a file that's grown too large, unclear boundaries, tangled responsibilities), include targeted improvements as part of the design - the way a good developer improves code they're working in.
- Don't propose unrelated refactoring. Stay focused on what serves the c
Capabilities
- Explore project context — check files, docs, recent commits
- Offer visual companion (if topic will involve visual questions) — this is its own message, not combined with a clarifying question. See the Visual Companion section below.
- Ask clarifying questions — one at a time, understand purpose/constraints/success criteria
- Propose 2-3 approaches — with trade-offs and your recommendation
- Present design — in sections scaled to their complexity, get user approval after each section
- Write design doc — save to docs/superpowers/specs/YYYY-MM-DD-<topic>-design.md and commit
- Spec self-review — quick inline check for placeholders, contradictions, ambiguity, scope (see below)
- User reviews written spec — ask user to review the spec file before proceeding
- Transition to implementation — invoke writing-plans skill to create implementation plan
Tools
Related Items
From the same repository — designed to work together
curl -o ~/.claude/skills/brainstorming/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/brainstorming/SKILL.md && curl -o ~/.claude/agents/code-reviewer.md https://raw.githubusercontent.com/obra/superpowers/main/agents/code-reviewer.md && curl -o ~/.claude/skills/using-superpowers/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/using-superpowers/SKILL.md && curl -o ~/.claude/skills/receiving-code-review/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/receiving-code-review/SKILL.md && curl -o ~/.claude/skills/systematic-debugging/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/systematic-debugging/SKILL.md && curl -o ~/.claude/skills/requesting-code-review/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/requesting-code-review/SKILL.md && curl -o ~/.claude/skills/test-driven-development/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/test-driven-development/SKILL.mdCode Reviewer
Senior Code Reviewer agent that reviews completed project steps against original plans and ensures code quality, architecture alignment, and coding standards compliance.
curl -o ~/.claude/agents/code-reviewer.md https://raw.githubusercontent.com/obra/superpowers/main/agents/code-reviewer.mdUsing Superpowers
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
curl -o ~/.claude/skills/using-superpowers/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/using-superpowers/SKILL.mdReceiving Code Review
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
curl -o ~/.claude/skills/receiving-code-review/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/receiving-code-review/SKILL.mdSystematic Debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
curl -o ~/.claude/skills/systematic-debugging/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/systematic-debugging/SKILL.mdRequesting Code Review
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
curl -o ~/.claude/skills/requesting-code-review/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/requesting-code-review/SKILL.mdTest Driven Development
Use when implementing any feature or bugfix, before writing implementation code
curl -o ~/.claude/skills/test-driven-development/SKILL.md https://raw.githubusercontent.com/obra/superpowers/main/skills/test-driven-development/SKILL.md