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. After clearing the design gate, automatically invoke the appropriate follow-up skill when the original request includes downstream work.
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
- Continue downstream work — when the original request includes more work, invoke the appropriate follow-up skill automatically
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=box];
"Downstream work remains?" [shape=diamond];
"Invoke follow-up skill and continue" [shape=doublecircle];
"Return design and stop" [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"];
"Brainstorming complete" -> "Downstream work remains?";
"Downstream work remains?" -> "Invoke follow-up skill and continue" [label="yes"];
"Downstream work remains?" -> "Return design and stop" [label="no"];
}
A cleared design is the terminal state of brainstorming, not necessarily of the user's request. If downstream work remains, pass the design forward, invoke the most appropriate follow-up skill automatically, and continue. Stop only when the user requested design alone, no downstream work remains, or a decision genuinely requires the user. Do NOT automatically write a design document or invoke a planning skill unless the request requires one.
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
Continuing after the design:
- Re-read the original request after clearing the design gate
- If implementation or another downstream task remains, invoke the most appropriate applicable follow-up skill and continue automatically
- Do not ask for confirmation solely because brainstorming has ended
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
- Automatic handoff - Treat the design gate as a phase boundary and invoke the appropriate follow-up skill when downstream work remains
- Be flexible - Go back and clarify when something doesn't make sense
1---2name: dineway-brainstorming3description: 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. After clearing the design gate, automatically invoke the appropriate follow-up skill when the original request includes downstream work.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. Once the gate is cleared, automatically invoke the appropriate follow-up skill and continue when downstream work remains; do not request confirmation merely to cross the skill boundary. 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 approval305. **Continue downstream work** — when the original request includes more work, invoke the appropriate follow-up skill automatically3132## Process Flow3334```dot35digraph dineway_brainstorming {36 "Explore project context" [shape=box];37 "Question genuinely needs user?" [shape=diamond];38 "Ask clarifying questions" [shape=box];39 "Propose 2-3 approaches" [shape=box];40 "Present design sections" [shape=box];41 "Approval genuinely needs user?" [shape=diamond];42 "User approves design?" [shape=diamond];43 "Brainstorming complete" [shape=box];44 "Downstream work remains?" [shape=diamond];45 "Invoke follow-up skill and continue" [shape=doublecircle];46 "Return design and stop" [shape=doublecircle];4748 "Explore project context" -> "Question genuinely needs user?";49 "Question genuinely needs user?" -> "Propose 2-3 approaches" [label="no, use recommendation"];50 "Question genuinely needs user?" -> "Ask clarifying questions" [label="yes"];51 "Ask clarifying questions" -> "Propose 2-3 approaches";52 "Propose 2-3 approaches" -> "Present design sections";53 "Present design sections" -> "Approval genuinely needs user?";54 "Approval genuinely needs user?" -> "Brainstorming complete" [label="no, use recommendation"];55 "Approval genuinely needs user?" -> "User approves design?" [label="yes"];56 "User approves design?" -> "Present design sections" [label="no, revise"];57 "User approves design?" -> "Brainstorming complete" [label="yes"];58 "Brainstorming complete" -> "Downstream work remains?";59 "Downstream work remains?" -> "Invoke follow-up skill and continue" [label="yes"];60 "Downstream work remains?" -> "Return design and stop" [label="no"];61}62```6364**A cleared design is the terminal state of brainstorming, not necessarily of the user's request.** If downstream work remains, pass the design forward, invoke the most appropriate follow-up skill automatically, and continue. Stop only when the user requested design alone, no downstream work remains, or a decision genuinely requires the user. Do NOT automatically write a design document or invoke a planning skill unless the request requires one.6566## The Process6768**Understanding the idea:**6970- Check out the current project state first (files, docs, recent commits)71- Ask questions one at a time to refine the idea72- 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 authority73- Prefer multiple choice questions when possible, but open-ended is fine too74- Only one question per message - if a topic needs more exploration, break it into multiple questions75- Focus on understanding: purpose, constraints, success criteria7677**Exploring approaches:**7879- Propose 2-3 different approaches with trade-offs80- Present options conversationally with your recommendation and reasoning81- Lead with your recommended option and explain why82- Before asking the user to pick an option, check whether you can safely choose and carry forward the recommendation yourself8384**Presenting the design:**8586- Once you believe you understand what you're building, present the design87- Scale each section to its complexity: a few sentences if straightforward, up to 200-300 words if nuanced88- Ask after each section whether it looks right so far, but first check whether the recommended decision is safe to carry forward without user approval89- Cover: architecture, components, data flow, error handling, testing90- Be ready to go back and clarify if something doesn't make sense9192**Continuing after the design:**9394- Re-read the original request after clearing the design gate95- If implementation or another downstream task remains, invoke the most appropriate applicable follow-up skill and continue automatically96- Do not ask for confirmation solely because brainstorming has ended9798## Key Principles99100- **Recommendation-first checkpoint** - Before every question or approval request, decide whether the recommended option is safe to choose for the user101- **Ask only when necessary** - Ask only when the checkpoint shows that the choice genuinely requires the user's information, judgment, risk tolerance, or authority102- **One question at a time** - Don't overwhelm with multiple questions103- **Multiple choice preferred** - Easier to answer than open-ended when user input is genuinely required104- **YAGNI ruthlessly** - Remove unnecessary features from all designs105- **Explore alternatives** - Always propose 2-3 approaches before settling106- **Incremental validation** - Present the design section by section and clear each approval gate through either the safe recommendation or explicit user approval107- **Automatic handoff** - Treat the design gate as a phase boundary and invoke the appropriate follow-up skill when downstream work remains108- **Be flexible** - Go back and clarify when something doesn't make sense