Brainstorming Ideas Into Designs
Overview
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. Before asking each question, check whether you can safely answer it with the recommended assumption and continue without interrupting the user. Once you understand what you're building, present the design and get user approval, applying the same check before every approval request.
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 clear its approval gate before implementation.
Checklist
You MUST create a task for each of these items and complete them in order:
- Explore project context — check files, docs, recent commits
- Ask clarifying questions — one at a time; before each question, check whether the recommended assumption lets you proceed without asking
- Propose 2-3 approaches — with trade-offs and your recommendation
- Present design — in sections scaled to their complexity; after each section, run the recommendation-first check before requesting approval
Process Flow
digraph dineway_brainstorming {
"Explore project context" [shape=box];
"Question genuinely needs user?" [shape=diamond];
"Ask clarifying questions" [shape=box];
"Propose 2-3 approaches" [shape=box];
"Present design sections" [shape=box];
"Approval genuinely needs user?" [shape=diamond];
"User approves design?" [shape=diamond];
"Brainstorming complete" [shape=doublecircle];
"Explore project context" -> "Question genuinely needs user?";
"Question genuinely needs user?" -> "Propose 2-3 approaches" [label="no, use recommendation"];
"Question genuinely needs user?" -> "Ask clarifying questions" [label="yes"];
"Ask clarifying questions" -> "Propose 2-3 approaches";
"Propose 2-3 approaches" -> "Present design sections";
"Present design sections" -> "Approval genuinely needs user?";
"Approval genuinely needs user?" -> "Brainstorming complete" [label="no, use recommendation"];
"Approval genuinely needs user?" -> "User approves design?" [label="yes"];
"User approves design?" -> "Present design sections" [label="no, revise"];
"User approves design?" -> "Brainstorming complete" [label="yes"];
}
The terminal state is an approved or safely self-cleared design. Return the design and stop. Do NOT automatically write a design document, invoke a planning skill, or begin implementation.
The Process
Understanding the idea:
- Check out the current project state first (files, docs, recent commits)
- Ask questions one at a time to refine the idea
- Before each question, check whether project evidence and a clearly recommended assumption are sufficient to proceed; ask only when the answer cannot be safely inferred and genuinely requires the user's judgment or authority
- 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
- Before asking the user to pick an option, check whether you can safely choose and carry forward the recommendation yourself
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, but first check whether the recommended decision is safe to carry forward without user approval
- Cover: architecture, components, data flow, error handling, testing
- Be ready to go back and clarify if something doesn't make sense
Key Principles
- Recommendation-first checkpoint - Before every question or approval request, decide whether the recommended option is safe to choose for the user
- Ask only when necessary - Ask only when the checkpoint shows that the choice genuinely requires the user's information, judgment, risk tolerance, or authority
- One question at a time - Don't overwhelm with multiple questions
- Multiple choice preferred - Easier to answer than open-ended when user input is genuinely required
- YAGNI ruthlessly - Remove unnecessary features from all designs
- Explore alternatives - Always propose 2-3 approaches before settling
- Incremental validation - Present the design section by section and clear each approval gate through either the safe recommendation or explicit user approval
- Be flexible - Go back and clarify when something doesn't make sense
1---2name: dineway-brainstorming-23description: 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.4---56# Brainstorming Ideas Into Designs78## Overview910Help turn ideas into fully formed designs and specs through natural collaborative dialogue.1112Start by understanding the current project context, then ask questions one at a time to refine the idea. Before asking each question, check whether you can safely answer it with the recommended assumption and continue without interrupting the user. Once you understand what you're building, present the design and get user approval, applying the same check before every approval request.1314<HARD-GATE>15Do NOT invoke any implementation skill, write any code, scaffold any project, or take any implementation action until you have presented a design and cleared its approval gate. Before asking for approval, check whether you can safely choose the recommended decision for the user. If so, record that decision and continue without asking; otherwise, obtain the user's approval. This applies to EVERY project regardless of perceived simplicity.16</HARD-GATE>1718## Anti-Pattern: "This Is Too Simple To Need A Design"1920Every 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 clear its approval gate before implementation.2122## Checklist2324You MUST create a task for each of these items and complete them in order:25261. **Explore project context** — check files, docs, recent commits272. **Ask clarifying questions** — one at a time; before each question, check whether the recommended assumption lets you proceed without asking283. **Propose 2-3 approaches** — with trade-offs and your recommendation294. **Present design** — in sections scaled to their complexity; after each section, run the recommendation-first check before requesting approval3031## Process Flow3233```dot34digraph dineway_brainstorming {35 "Explore project context" [shape=box];36 "Question genuinely needs user?" [shape=diamond];37 "Ask clarifying questions" [shape=box];38 "Propose 2-3 approaches" [shape=box];39 "Present design sections" [shape=box];40 "Approval genuinely needs user?" [shape=diamond];41 "User approves design?" [shape=diamond];42 "Brainstorming complete" [shape=doublecircle];4344 "Explore project context" -> "Question genuinely needs user?";45 "Question genuinely needs user?" -> "Propose 2-3 approaches" [label="no, use recommendation"];46 "Question genuinely needs user?" -> "Ask clarifying questions" [label="yes"];47 "Ask clarifying questions" -> "Propose 2-3 approaches";48 "Propose 2-3 approaches" -> "Present design sections";49 "Present design sections" -> "Approval genuinely needs user?";50 "Approval genuinely needs user?" -> "Brainstorming complete" [label="no, use recommendation"];51 "Approval genuinely needs user?" -> "User approves design?" [label="yes"];52 "User approves design?" -> "Present design sections" [label="no, revise"];53 "User approves design?" -> "Brainstorming complete" [label="yes"];54}55```5657**The terminal state is an approved or safely self-cleared design.** Return the design and stop. Do NOT automatically write a design document, invoke a planning skill, or begin implementation.5859## The Process6061**Understanding the idea:**6263- Check out the current project state first (files, docs, recent commits)64- Ask questions one at a time to refine the idea65- Before each question, check whether project evidence and a clearly recommended assumption are sufficient to proceed; ask only when the answer cannot be safely inferred and genuinely requires the user's judgment or authority66- Prefer multiple choice questions when possible, but open-ended is fine too67- Only one question per message - if a topic needs more exploration, break it into multiple questions68- Focus on understanding: purpose, constraints, success criteria6970**Exploring approaches:**7172- Propose 2-3 different approaches with trade-offs73- Present options conversationally with your recommendation and reasoning74- Lead with your recommended option and explain why75- Before asking the user to pick an option, check whether you can safely choose and carry forward the recommendation yourself7677**Presenting the design:**7879- Once you believe you understand what you're building, present the design80- Scale each section to its complexity: a few sentences if straightforward, up to 200-300 words if nuanced81- Ask after each section whether it looks right so far, but first check whether the recommended decision is safe to carry forward without user approval82- Cover: architecture, components, data flow, error handling, testing83- Be ready to go back and clarify if something doesn't make sense8485## Key Principles8687- **Recommendation-first checkpoint** - Before every question or approval request, decide whether the recommended option is safe to choose for the user88- **Ask only when necessary** - Ask only when the checkpoint shows that the choice genuinely requires the user's information, judgment, risk tolerance, or authority89- **One question at a time** - Don't overwhelm with multiple questions90- **Multiple choice preferred** - Easier to answer than open-ended when user input is genuinely required91- **YAGNI ruthlessly** - Remove unnecessary features from all designs92- **Explore alternatives** - Always propose 2-3 approaches before settling93- **Incremental validation** - Present the design section by section and clear each approval gate through either the safe recommendation or explicit user approval94- **Be flexible** - Go back and clarify when something doesn't make sense