brainstorming
Use before any creative work - creating features, building components, adding functionality, or modifying behavior. Triggers on /brainstorm command, when exploring ideas before planning, when user describes a vague goal or feature request, or when design decisions need collaborative exploration. Explores user intent, requirements and design before implementation.
What this skill does
# Brainstorming Ideas Into Designs ## Overview Brainstorming transforms vague ideas into validated designs through structured collaborative dialogue. It bridges the gap between "I want X" and a concrete design that can be handed to the planning skill. This enhanced version integrates with the self-learning skill to build on known project context and avoid re-asking previously answered questions. **Announce at start:** "I'm using the brainstorming skill to explore this idea and create a design before implementation." ## Trigger Conditions - User describes a new feature idea or goal - User asks "how should we build X?" - Creative work requires design exploration before planning - `/brainstorm` command invoked - Transition from a vague requirement to structured design is needed --- ## Phase 1: Context Loading **Goal:** Load everything known about the project before asking the user anything. 1. Check memory files (`project-context.md`, `learned-patterns.md`, `decisions-log.md`) for known patterns, stack, and conventions 2. Read relevant existing code, docs, and recent commits 3. Review existing designs in `docs/plans/` for related prior work 4. Identify constraints from the existing architecture 5. Note what you already know — do NOT re-ask the user for information you can discover ### Context Sources Priority | Source | What to Extract | Priority | |--------|----------------|----------| | Memory files | Stack, conventions, past decisions | Highest | | CLAUDE.md | Project structure, hard gates | High | | Existing code | Current patterns, architecture | High | | Recent commits | Direction of development | Medium | | docs/plans/ | Prior designs and decisions | Medium | **STOP — Do NOT proceed to Phase 2 until:** - [ ] Memory files have been checked - [ ] Relevant codebase areas have been explored - [ ] You can summarize what you already know about this domain --- ## Phase 2: Idea Exploration **Goal:** Understand the user's intent through focused, one-at-a-time questions. 1. Ask ONE question per message — never multiple questions 2. Prefer multiple choice questions when possible 3. Focus on understanding purpose, constraints, and success criteria 4. Build on context loaded in Phase 1 — skip questions you can already answer 5. Convert vague answers into specific, testable criteria ### Question Flow Decision Table | What You Need to Know | Question Type | Example | |-----------------------|--------------|---------| | Core purpose | Open-ended | "What problem does this solve for the user?" | | Scope boundaries | Multiple choice | "Should this handle: (A) only logged-in users, (B) all users, (C) depends on role?" | | Technical constraints | Yes/No + follow-up | "Does this need to work offline?" | | Priority trade-offs | Forced ranking | "Rank these: speed, correctness, simplicity" | | Success criteria | Measurable target | "What does 'working' look like? Can you describe the happy path?" | | Non-goals | Explicit exclusion | "What should we explicitly NOT build in this iteration?" | ### Question Rules | Rule | Rationale | |------|-----------| | One question per message | Prevents cognitive overload | | Multiple choice preferred | Faster to answer, reduces ambiguity | | Research before asking | Respect user's time | | Build on memory | Do not re-ask known things | | Testable outcomes | Vague success criteria lead to vague designs | **STOP — Do NOT proceed to Phase 3 until:** - [ ] You understand the core purpose and who it serves - [ ] You know the constraints (technical, timeline, scope) - [ ] You have identified success criteria and non-goals - [ ] No critical ambiguities remain about intent --- ## Phase 3: Approach Exploration **Goal:** Propose 2-3 distinct approaches with trade-offs and a clear recommendation. For each approach, present: | Section | Content | |---------|---------| | Name | Short descriptive label | | Architecture summary | 2-3 sentences | | Key trade-offs | Pros and cons | | Complexity | Low / Medium / High | | Risk | What could go wrong | | Your assessment | Why you do or do not recommend it | ### Approach Comparison Template ``` ## Approach A: [Name] (Recommended) **Summary:** [2-3 sentences] **Pros:** [list] **Cons:** [list] **Complexity:** [Low/Medium/High] **Risk:** [What could go wrong] **Why recommended:** [1-2 sentences] ## Approach B: [Name] ... ## Approach C: [Name] (if needed) ... ``` **Lead with your recommended approach** and explain why it is the best fit given the constraints discussed in Phase 2. **STOP — Do NOT proceed to Phase 4 until:** - [ ] You have proposed at least 2 approaches - [ ] Each approach has explicit trade-offs - [ ] You have made a clear recommendation - [ ] User has indicated which approach to pursue --- ## Phase 4: Design Presentation **Goal:** Present the detailed design in sections, getting approval incrementally. 1. Present the design in logical sections scaled to complexity 2. Ask after each section whether it looks right so far 3. Be ready to go back and revise any section based on feedback 4. Cover all relevant design dimensions ### Design Sections by Complexity | Complexity | Required Sections | Optional Sections | |-----------|-------------------|-------------------| | Simple (1-3 tasks) | Architecture, Components | — | | Medium (4-10 tasks) | Architecture, Components, Data Flow, Error Handling | Testing Strategy | | Complex (10+ tasks) | Architecture, Components, Data Flow, Error Handling, Testing Strategy, Performance, Security | Migration Plan | ### Section Presentation Order 1. **Architecture** — High-level structure and key decisions 2. **Components** — What pieces exist and how they relate 3. **Data Flow** — How data moves through the system 4. **Error Handling** — What can go wrong and how to handle it 5. **Testing Strategy** — How to verify correctness 6. **Performance** — Only if relevant constraints exist 7. **Security** — Only if handling sensitive data or auth Present one section at a time. Wait for user confirmation before proceeding. **STOP — Do NOT proceed to Phase 5 until:** - [ ] All relevant design sections have been presented - [ ] User has approved each section (or revisions were made) - [ ] The complete design is coherent and addresses all requirements --- ## Phase 5: Documentation and Transition **Goal:** Persist the design and hand off to the planning skill. 1. Write the validated design to `docs/plans/YYYY-MM-DD-<topic>-design.md` 2. Commit the design document 3. Update self-learning memory: - `memory/decisions-log.md` — any architectural decisions made - `memory/learned-patterns.md` — any new conventions discussed 4. Invoke the `planning` skill to create a detailed implementation plan ### Design Document Template ```markdown # [Topic] Design Document **Date:** YYYY-MM-DD **Status:** Approved **Approach:** [Which approach was chosen] ## Problem Statement [What problem this solves and for whom] ## Design ### Architecture [High-level structure] ### Components [Key pieces and their relationships] ### Data Flow [How data moves through the system] ### Error Handling [What can go wrong and how it is handled] ## Decisions Made - [Decision 1]: [Rationale] - [Decision 2]: [Rationale] ## Non-Goals - [What was explicitly excluded and why] ## Next Steps Invoke planning skill to create implementation plan. ``` **STOP — Do NOT proceed until:** - [ ] Design document is saved to `docs/plans/` - [ ] Memory files are updated with new decisions/patterns - [ ] User has confirmed the design is complete --- ## Anti-Patterns / Common Mistakes | Anti-Pattern | Why It Fails | Correct Approach | |-------------|-------------|-----------------| | "This is too simple to brainstorm" | Every project needs a design, even simple ones | Design can be brief, but must exist | | "The user already knows what they want" | Users know WHAT, not HOW | Explore the HOW through approaches | | "I can just start coding" | Code without design is technic
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.