Turn ideas into designs through collaborative dialogue. Use when user wants to brainstorm, design features, explore approaches, or think through implementation before coding.
From dev-toolsnpx claudepluginhub alexei-led/cc-thingz --plugin dev-toolsThis skill is limited to using the following tools:
SKILL.codex.mdSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Transform vague ideas into fully-formed designs through structured collaborative dialogue.
Use TodoWrite to track these 7 phases:
Start with dialogue, not agents. Ask the user directly.
Use AskUserQuestion:
| Header | Question | Options |
|---|---|---|
| Idea type | What would you like to brainstorm? | 1. New feature - Add new functionality 2. Modification - Change existing behavior 3. Integration - Connect with external system 4. Exploration - Not sure yet, let's discover |
Ask clarifying questions using AskUserQuestion. Keep it conversational:
Ask questions one at a time using AskUserQuestion. Adapt based on idea type.
| Question Type | When to Ask | Example AskUserQuestion |
|---|---|---|
| WHO | Always first | "Who will use this?" → Options: Existing users, New segment, Internal, API consumers |
| WHY | After WHO | "What problem does this solve?" → Options based on detected pain points |
| WHAT | After WHY is clear | "What's the core capability?" → Open or options based on research |
| WHERE | For integrations/modifications | "Where should this live?" → Options based on codebase exploration |
| HOW | After approach research | "How should we implement?" → Present 2-3 technical approaches |
Before moving on, explicitly list the assumptions embedded in the idea so far:
Based on our discussion, here are the assumptions I'm seeing:
1. [Assumption about users] — e.g., "Users want X in real-time"
2. [Assumption about tech] — e.g., "Our current DB can handle this load"
3. [Assumption about scope] — e.g., "This doesn't need to work offline"
Use AskUserQuestion:
| Header | Question | Options |
|---|---|---|
| Assumptions | Any of these assumptions wrong or risky? | 1. All correct - Proceed as-is 2. Some wrong - I'll clarify 3. Not sure - Let's validate the risky ones during research |
If "Some wrong": ask which ones and adjust requirements. If "Not sure": flag risky assumptions for verification in Phase 4.
After understanding requirements, ask before spawning any agents:
| Header | Question | Options |
|---|---|---|
| Next step | How should we proceed? | 1. Explore codebase - Check existing patterns and tech stack 2. Research solutions - Look up how others solve this 3. Check project history - Query past decisions on this topic (claude-mem) 4. Both - Explore then research 5. Skip to approaches - I know what I want |
Task(
subagent_type="Explore",
prompt="Quick scan: project structure, tech stack, patterns relevant to [user's idea]",
run_in_background=false
)
Then summarize findings and ask: "Based on this, should we also research external solutions?"
If claude-mem tools are available:
search({ query: "[topic keywords]", limit: 10 })
timeline({ query: "[topic keywords]", depth_before: 5, depth_after: 5 })
Summarize past decisions, known issues, and relevant context. Then ask if they want to also explore or research.
Proceed to Phase 4.
Jump directly to Phase 5 (Present Approaches).
Only run when user explicitly chose research in Phase 3.
mcp__perplexity-ask__perplexity_ask({
messages: [{
role: "user",
content: "How do leading [industry] products implement [feature type]? Include architectural patterns, UX approaches, and trade-offs. Focus on [tech stack] implementations."
}]
})
After Perplexity response, WebFetch top 2-3 relevant sources:
WebFetch(url="<citation-url>", prompt="Extract implementation details, code patterns, and lessons learned for [feature]")
Present research summary before asking approach preference:
## Research Findings
**Common patterns:**
- [Pattern 1]: Used by X, Y. Trade-off: ...
- [Pattern 2]: Used by Z. Trade-off: ...
**Recommended for our context:** [Pattern] because [reasons]
Use AskUserQuestion with 2-4 options:
| Header | Question | Options |
|---|---|---|
| Approach | Which approach fits best? | 1. [Recommended] - Description + key trade-off 2. [Alternative] - Description + key trade-off 3. Minimal - YAGNI version |
For each option, briefly cover:
Present design in sections (~200-300 words each). After each section, use AskUserQuestion:
| Header | Question | Options |
|---|---|---|
| Validate | Does this [section] look right? | 1. Yes, continue - Move to next section 2. Needs changes - I'll explain 3. Go back - Revisit earlier decisions |
At each section, actively challenge:
Write(
file_path="docs/plans/YYYY-MM-DD-<topic>-design.md",
content="# [Feature] Design\n\n## Problem\n...\n## Solution\n...\n## Architecture\n..."
)
git add docs/plans/*.md && git commit -m "docs: add [feature] design document"
Use AskUserQuestion:
| Header | Question | Options |
|---|---|---|
| Next steps | Ready to proceed with implementation? | 1. Create worktree - Isolated workspace via using-git-worktrees 2. Create plan - Detailed implementation steps 3. Done for now - Just save the design |
This skill incorporates proven brainstorming techniques:
| Technique | How It's Used |
|---|---|
| Starbursting (5WH) | Structured questions in Phase 2 |
| Design Thinking | Empathize (context) → Define (WHY) → Ideate → Prototype (design sections) |
| SCAMPER | For modifications: Substitute, Combine, Adapt, Modify, Put to other use, Eliminate, Reverse |
| Reverse Brainstorming | "How could this fail?" during validation |
| Mind Mapping | Architecture section visualizes relationships |
/brainstorming-ideas # Start open-ended brainstorm
/brainstorming-ideas user notifications # Brainstorm notification feature
/brainstorming-ideas auth flow # Brainstorm authentication changes
Execute this collaborative brainstorming workflow now.