Initial commit
This commit is contained in:
211
skills/brainstorming/SKILL.md
Normal file
211
skills/brainstorming/SKILL.md
Normal file
@@ -0,0 +1,211 @@
|
||||
---
|
||||
name: brainstorming
|
||||
description: Collaborative ideation for projects and writing. Ask clarifying questions, suggest angles, challenge assumptions, and help refine vague ideas into concrete requirements or topics. Use when exploring ideas before planning or drafting.
|
||||
---
|
||||
|
||||
# Brainstorming
|
||||
|
||||
## When to Use This Skill
|
||||
|
||||
Use brainstorming when:
|
||||
- User mentions wanting to build/write something but hasn't structured it yet
|
||||
- Initial idea is vague or broad ("I want to build notifications" or "I want to write about productivity")
|
||||
- User is exploring multiple angles or approaches
|
||||
- Idea needs refinement before planning or outlining
|
||||
|
||||
Skip when:
|
||||
- User has clear requirements or outline ready
|
||||
- Topic/project is well-defined and just needs execution
|
||||
- User explicitly asks to skip ideation and start working
|
||||
|
||||
## Critical: User's Thoughts, Not Yours
|
||||
|
||||
**Your role: Draw out the user's ideas through questions. Never inject your own ideas.**
|
||||
|
||||
**ASK questions to explore their thoughts:**
|
||||
- "What triggered this topic?"
|
||||
- "What's your core argument or insight?"
|
||||
- "What examples from your experience illustrate this?"
|
||||
- "Who is this for?"
|
||||
|
||||
**DON'T suggest ideas they haven't mentioned:**
|
||||
```
|
||||
❌ BAD (injecting):
|
||||
AI: You should write about microservices vs monoliths
|
||||
|
||||
✓ GOOD (exploring):
|
||||
AI: What aspect of architecture are you thinking about?
|
||||
```
|
||||
|
||||
**The user is the expert on their own experience. You're just helping them structure it.**
|
||||
|
||||
## Core Approach
|
||||
|
||||
**Start with Questions, Not Suggestions**
|
||||
|
||||
Don't immediately propose outlines or structure. First understand:
|
||||
- What triggered this topic? (specific experience, observation, frustration?)
|
||||
- Who is the audience?
|
||||
- What's the core insight or argument?
|
||||
- What makes this topic relevant now?
|
||||
|
||||
**Examples:**
|
||||
- "What triggered this - specific experience or pattern you've noticed?"
|
||||
- "Is this for engineers, managers, or general audience?"
|
||||
- "What's the contrarian take here? What does conventional wisdom miss?"
|
||||
- "Why now? What makes this relevant or timely?"
|
||||
|
||||
## Ideation Techniques
|
||||
|
||||
### 1. Explore Tensions and Contradictions
|
||||
Look for interesting conflicts:
|
||||
- "You said X works, but also mentioned Y failed - what's the difference?"
|
||||
- "That sounds like it contradicts Z - is that the point?"
|
||||
|
||||
### 2. Challenge Assumptions
|
||||
Gently probe the premise:
|
||||
- "Is that always true, or are there contexts where it breaks down?"
|
||||
- "What would someone who disagrees with this say?"
|
||||
|
||||
### 3. Find the Concrete Angle
|
||||
Move from abstract to specific:
|
||||
- Vague: "I want to write about AI"
|
||||
- Concrete: "Why AI code review misses context that human reviewers catch"
|
||||
|
||||
**Pattern:**
|
||||
- Abstract topic → Specific problem
|
||||
- General observation → Concrete example
|
||||
- Theory → Practical implication
|
||||
|
||||
### 4. Suggest Multiple Perspectives
|
||||
Offer 2-3 different angles, not just one:
|
||||
- "You could approach this as: (1) why X fails, (2) what to do instead, or (3) when X actually works"
|
||||
- "This could be prescriptive (here's how to fix it) or descriptive (here's why it happens)"
|
||||
|
||||
### 5. Use Personal Experience as Foundation
|
||||
Ground abstract concepts:
|
||||
- "You mentioned seeing this at 3 companies - what pattern did you notice?"
|
||||
- "Walk me through a specific example where this happened"
|
||||
|
||||
## Working with Outputs
|
||||
|
||||
### For Writing (via /new-post):
|
||||
Add ideas to **braindump.md**:
|
||||
|
||||
**Structured sections:**
|
||||
- **Context**: What triggered this topic
|
||||
- **Core Argument**: Main thesis or insight
|
||||
- **Audience**: Who this is for
|
||||
- **Angles**: Different approaches to explore
|
||||
- **Examples**: Concrete instances, anecdotes
|
||||
- **Questions**: Open questions to resolve
|
||||
|
||||
**Iterate through conversation** - update braindump.md as ideas evolve.
|
||||
|
||||
### For Projects (via /orchestrate --discover):
|
||||
Create **discovery.md** with:
|
||||
|
||||
**Structured sections:**
|
||||
- **Context**: What triggered this project idea
|
||||
- **Problem Statement**: What needs solving
|
||||
- **Constraints**: Technical, time, resource constraints
|
||||
- **Approaches**: Different technical approaches to consider
|
||||
- **Research Findings**: Links, docs, patterns discovered
|
||||
- **Open Questions**: Unclear requirements or unknowns
|
||||
|
||||
## Transition Guidance
|
||||
|
||||
Know when to move from brainstorming to execution:
|
||||
|
||||
### For Technical Projects
|
||||
|
||||
**Ready to plan when:**
|
||||
- Problem statement is clear and specific
|
||||
- Key constraints identified (performance, scale, security)
|
||||
- 2-3 potential approaches explored
|
||||
- User expresses readiness or no major unknowns remain
|
||||
|
||||
**Transition:**
|
||||
```
|
||||
AI: We've clarified:
|
||||
- Problem: Real-time notifications for 10k+ concurrent users
|
||||
- Constraints: Must integrate with existing auth, <100ms latency
|
||||
- Approach: WebSocket with Redis pub/sub
|
||||
- Open questions: Documented in discovery.md
|
||||
|
||||
Ready to create implementation plan?
|
||||
→ Recommend: /plan-feature [clarified request]
|
||||
→ Next agent: planning-agent (uses technical-planning skill)
|
||||
```
|
||||
|
||||
**Not ready when:**
|
||||
- Problem statement is vague ("something with notifications")
|
||||
- Critical constraints unknown (scale, security requirements)
|
||||
- Multiple competing approaches without clarity
|
||||
|
||||
### For Writing
|
||||
|
||||
**Ready to outline when:**
|
||||
- Core argument is clear
|
||||
- Audience is defined
|
||||
- 2-3 concrete examples identified
|
||||
- User expresses readiness ("okay, let's outline this")
|
||||
|
||||
**Transition:**
|
||||
```
|
||||
AI: We've got:
|
||||
- Core argument: OKRs fail because they measure what's easy, not what matters
|
||||
- 3 examples from your experience
|
||||
- Target audience: engineering managers
|
||||
|
||||
Ready to structure this into an outline?
|
||||
→ Continue in braindump.md with outline
|
||||
→ Next: Draft in draft.md using blog-writing skill
|
||||
```
|
||||
|
||||
**Not ready when:**
|
||||
- Core argument is still fuzzy
|
||||
- Multiple competing angles without clarity on which to pursue
|
||||
- Missing concrete examples or evidence
|
||||
|
||||
## Common Pitfalls to Avoid
|
||||
|
||||
1. **Injecting Your Ideas**: Don't suggest topics or angles the user hasn't mentioned - ask questions to draw out THEIR ideas
|
||||
2. **Premature Structuring**: Don't jump to outline before the idea is clear
|
||||
3. **Too Many Options**: Don't overwhelm with 10 different angles - offer 2-3
|
||||
4. **Leading the Witness**: Ask genuine questions, don't push your preferred angle
|
||||
5. **Over-Abstracting**: Keep pulling back to concrete examples
|
||||
6. **Ignoring Constraints**: If user says "short post," don't brainstorm epic series
|
||||
7. **Making Up Examples**: Don't invent scenarios - use only what the user has shared
|
||||
|
||||
## Quality Checklist
|
||||
|
||||
**Before transitioning (Writing):**
|
||||
- [ ] Core argument is clear and specific (not vague)
|
||||
- [ ] At least 2-3 concrete examples or data points identified
|
||||
- [ ] Audience and purpose are defined
|
||||
- [ ] User feels ready to move forward
|
||||
- [ ] Braindump.md has been updated with key ideas
|
||||
|
||||
**Before transitioning (Projects):**
|
||||
- [ ] Problem statement is clear and specific (not vague)
|
||||
- [ ] Key constraints identified (scale, performance, security, integrations)
|
||||
- [ ] At least 2-3 potential approaches explored
|
||||
- [ ] User feels ready to move forward or major unknowns documented
|
||||
- [ ] Discovery.md has been created with findings and open questions
|
||||
|
||||
## Example Flow
|
||||
|
||||
For detailed conversation examples showing brainstorming techniques in action, see reference/examples.md.
|
||||
|
||||
## Integration with Other Skills
|
||||
|
||||
**For Writing:**
|
||||
- **After brainstorming**: Transition to **blog-writing** skill (writing plugin) for drafting
|
||||
- **During brainstorming**: Use **research-synthesis** skill if research is needed
|
||||
- **Throughout**: Update braindump.md with evolving ideas
|
||||
|
||||
**For Projects:**
|
||||
- **After brainstorming**: Transition to **technical-planning** skill via planning-agent
|
||||
- **During brainstorming**: Use **research-synthesis** skill to investigate approaches, docs, patterns
|
||||
- **Throughout**: Update discovery.md with findings and clarifications
|
||||
67
skills/brainstorming/reference/examples.md
Normal file
67
skills/brainstorming/reference/examples.md
Normal file
@@ -0,0 +1,67 @@
|
||||
# Brainstorming Examples
|
||||
|
||||
## Example: AI Code Review Tools
|
||||
|
||||
This example shows how to use the brainstorming skill to refine a vague idea into a concrete blog post angle.
|
||||
|
||||
```
|
||||
You: I want to write about code reviews
|
||||
|
||||
AI: [invokes brainstorming skill]
|
||||
What aspect of code reviews? Process, tooling, culture?
|
||||
|
||||
You: How AI code review tools miss important stuff
|
||||
|
||||
AI: Interesting - what do they miss that humans catch?
|
||||
|
||||
You: Context, design decisions, why code exists
|
||||
|
||||
AI: So it's not about finding bugs, but understanding intent?
|
||||
Have you seen this happen in practice?
|
||||
|
||||
You: Yes, at my current company - AI flags style but misses architecture issues
|
||||
|
||||
AI: That's concrete. Are you arguing:
|
||||
(1) AI tools are fundamentally limited, or
|
||||
(2) Current tools need better context, or
|
||||
(3) Humans and AI serve different purposes?
|
||||
|
||||
You: Probably #3 - they're complementary
|
||||
|
||||
AI: Good angle - avoids being anti-AI while still critical.
|
||||
[updates braindump.md]
|
||||
|
||||
Should we outline this? Thinking:
|
||||
1. The Promise (what AI code review claims to do)
|
||||
2. What It Misses (context, intent, architecture)
|
||||
3. What Humans Still Do Better
|
||||
4. How to Use Both Together
|
||||
|
||||
You: Yes, but add why this matters
|
||||
|
||||
AI: [adds to outline in braindump.md]
|
||||
Added "Why This Matters" section - practical implications
|
||||
for engineering teams. Ready to start drafting?
|
||||
```
|
||||
|
||||
## What This Example Demonstrates
|
||||
|
||||
**Techniques Used:**
|
||||
- Started with questions, not suggestions
|
||||
- Explored the specific angle (not all aspects of code reviews)
|
||||
- Challenged assumptions ("is it about bugs or intent?")
|
||||
- Grounded in concrete experience (current company)
|
||||
- Offered multiple perspectives (3 different angles)
|
||||
- Transitioned only when ready (clear argument, examples, outline)
|
||||
|
||||
**Braindump Updates:**
|
||||
- Context: Experience at current company with AI code review
|
||||
- Core Argument: AI and human code review are complementary, not competitive
|
||||
- Audience: Engineering teams using or considering AI code review tools
|
||||
- Outline: 4 main sections identified
|
||||
|
||||
**Signs of Readiness:**
|
||||
- Core argument clear (complementary, not competitive)
|
||||
- Concrete example identified (company experience)
|
||||
- User expressed confidence in direction
|
||||
- Outline emerged naturally from conversation
|
||||
Reference in New Issue
Block a user