specsmd 0.0.0-dev.80 → 0.0.0-dev.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/flows/ideation/README.md +35 -0
- package/flows/ideation/agents/orchestrator/agent.md +102 -0
- package/flows/ideation/agents/orchestrator/skills/flame/SKILL.md +131 -0
- package/flows/ideation/agents/orchestrator/skills/flame/references/evaluation-criteria.md +77 -0
- package/flows/ideation/agents/orchestrator/skills/flame/references/six-hats-method.md +75 -0
- package/flows/ideation/agents/orchestrator/skills/flame/templates/flame-report.md.hbs +81 -0
- package/flows/ideation/agents/orchestrator/skills/forge/SKILL.md +152 -0
- package/flows/ideation/agents/orchestrator/skills/forge/references/disney-method.md +86 -0
- package/flows/ideation/agents/orchestrator/skills/forge/references/pitch-framework.md +72 -0
- package/flows/ideation/agents/orchestrator/skills/forge/templates/concept-brief.md.hbs +83 -0
- package/flows/ideation/agents/orchestrator/skills/spark/SKILL.md +141 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/anti-bias.md +43 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/analogy.md +53 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/first-principles.md +51 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/index.yaml +76 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/inversion.md +46 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/questorming.md +51 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/random-word.md +34 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/scamper.md +52 -0
- package/flows/ideation/agents/orchestrator/skills/spark/references/techniques/what-if.md +49 -0
- package/flows/ideation/agents/orchestrator/skills/spark/templates/spark-bank.md.hbs +72 -0
- package/flows/ideation/commands/flame.md +43 -0
- package/flows/ideation/commands/forge.md +43 -0
- package/flows/ideation/commands/ideation.md +51 -0
- package/flows/ideation/commands/spark.md +43 -0
- package/flows/ideation/memory-bank.yaml +177 -0
- package/flows/ideation/quick-start.md +84 -0
- package/flows/ideation/shared/protocols/anti-bias.md +76 -0
- package/flows/ideation/shared/protocols/deep-thinking.md +85 -0
- package/flows/ideation/shared/protocols/diverge-converge.md +70 -0
- package/flows/ideation/shared/protocols/interaction-adaptation.md +81 -0
- package/lib/constants.js +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Questorming Technique
|
|
2
|
+
|
|
3
|
+
**Origin**: Hal Gregersen's "Question Burst" methodology; also related to Osborn's principle of exploring the problem space before solving.
|
|
4
|
+
|
|
5
|
+
**Interaction type**: Co-build — AI generates questions, user identifies the most important ones, AI builds ideas from those.
|
|
6
|
+
|
|
7
|
+
## How It Works
|
|
8
|
+
|
|
9
|
+
1. **State the topic** without any solutions in mind
|
|
10
|
+
2. **Generate questions only** — no answers allowed during this phase
|
|
11
|
+
3. **Aim for 15-20 questions** in rapid succession
|
|
12
|
+
4. **Categorize** — which questions challenge assumptions? Which reframe the problem?
|
|
13
|
+
5. **Select the most provocative questions** — these become the seed for new ideas
|
|
14
|
+
6. **Generate ideas** from the selected questions
|
|
15
|
+
|
|
16
|
+
## Question Types
|
|
17
|
+
|
|
18
|
+
### Assumption-Challenging
|
|
19
|
+
- Why do we assume [X] is necessary?
|
|
20
|
+
- What if [commonly accepted truth] were false?
|
|
21
|
+
- Who said this has to be done by [conventional actor]?
|
|
22
|
+
|
|
23
|
+
### Scope-Shifting
|
|
24
|
+
- What if we zoom out 10x — what's the bigger problem?
|
|
25
|
+
- What if we zoom in 10x — what's the specific pain point?
|
|
26
|
+
- What would this look like from the customer's customer's perspective?
|
|
27
|
+
|
|
28
|
+
### Stakeholder Questions
|
|
29
|
+
- Who benefits from the current broken state?
|
|
30
|
+
- Who would lose if we solved this perfectly?
|
|
31
|
+
- Who has already solved this in a different context?
|
|
32
|
+
|
|
33
|
+
### Temporal Questions
|
|
34
|
+
- Why hasn't this been solved yet?
|
|
35
|
+
- What will make this irrelevant in 5 years?
|
|
36
|
+
- What had to change for this to become solvable now?
|
|
37
|
+
|
|
38
|
+
### Provocative Questions
|
|
39
|
+
- What's the most expensive possible solution? The cheapest?
|
|
40
|
+
- What would a competitor do with this opportunity?
|
|
41
|
+
- What would a child suggest?
|
|
42
|
+
|
|
43
|
+
## AI Application Notes
|
|
44
|
+
|
|
45
|
+
When using questorming internally:
|
|
46
|
+
1. Generate a burst of 8-10 questions about the topic
|
|
47
|
+
2. Present 3-5 of the most provocative ones to the user
|
|
48
|
+
3. Ask: "Which of these feels most important?" (the one elicit moment)
|
|
49
|
+
4. If user doesn't engage, pick the most provocative question yourself (ai_fallback)
|
|
50
|
+
5. Generate ideas seeded from the selected question(s)
|
|
51
|
+
6. Best used when the problem space feels unclear or when the user says "I'm not sure what I want"
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Random Word Technique
|
|
2
|
+
|
|
3
|
+
**Origin**: Edward de Bono's lateral thinking toolkit. Forces connections between unrelated concepts.
|
|
4
|
+
|
|
5
|
+
**Interaction type**: Generate — AI selects random stimulus and forces connections.
|
|
6
|
+
|
|
7
|
+
## How It Works
|
|
8
|
+
|
|
9
|
+
1. **Select a random concept** from an unrelated domain (not a literal random word — pick a vivid, concrete thing)
|
|
10
|
+
2. **List its attributes** — what makes it interesting, how it works, what it's known for
|
|
11
|
+
3. **Force connections** — map each attribute to the ideation topic
|
|
12
|
+
4. **Develop the strongest connections** into full ideas
|
|
13
|
+
|
|
14
|
+
## Examples of Forcing Connections
|
|
15
|
+
|
|
16
|
+
**Topic**: Improving employee onboarding
|
|
17
|
+
**Random concept**: Coral reef
|
|
18
|
+
|
|
19
|
+
| Coral Reef Attribute | Forced Connection |
|
|
20
|
+
|---------------------|-------------------|
|
|
21
|
+
| Self-organizing ecosystem | Onboarding that self-organizes based on new hire's role and interests |
|
|
22
|
+
| Symbiotic relationships | Pair each new hire with a "symbiont" — someone from a different team |
|
|
23
|
+
| Builds slowly, lasts centuries | First-week foundations that compound over the entire tenure |
|
|
24
|
+
| Bleaches under stress | Early warning system when onboarding overwhelms |
|
|
25
|
+
| Attracts diverse species | Make onboarding a magnet event that existing employees want to attend |
|
|
26
|
+
|
|
27
|
+
## AI Application Notes
|
|
28
|
+
|
|
29
|
+
When using random-word internally:
|
|
30
|
+
1. Pick concepts from **distant domains** — nature, games, history, architecture, music
|
|
31
|
+
2. The more unrelated the concept, the more novel the connections
|
|
32
|
+
3. Generate at least 5 attribute-connections, then pick the 2-3 most surprising
|
|
33
|
+
4. Present only the resulting ideas — never mention "random word" or the stimulus process
|
|
34
|
+
5. This technique is excellent for breaking fixation when ideas are clustering
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# SCAMPER Technique
|
|
2
|
+
|
|
3
|
+
**Origin**: Bob Eberle, building on Alex Osborn's idea prompter checklists from *Applied Imagination* (1953).
|
|
4
|
+
|
|
5
|
+
**Interaction type**: Generate — AI applies transformations, user reacts.
|
|
6
|
+
|
|
7
|
+
## The Seven Operators
|
|
8
|
+
|
|
9
|
+
### S — Substitute
|
|
10
|
+
What can be substituted? Different materials, people, processes, components, approaches?
|
|
11
|
+
- Replace one element with something unexpected
|
|
12
|
+
- Swap the medium, channel, or context
|
|
13
|
+
|
|
14
|
+
### C — Combine
|
|
15
|
+
What can be combined? Blend two ideas, merge functions, mix purposes?
|
|
16
|
+
- Combine features from different domains
|
|
17
|
+
- Merge two user needs into one solution
|
|
18
|
+
|
|
19
|
+
### A — Adapt
|
|
20
|
+
What can be adapted from elsewhere? What analogies apply? What else is like this?
|
|
21
|
+
- Borrow solutions from other industries
|
|
22
|
+
- Adapt natural processes to the problem
|
|
23
|
+
|
|
24
|
+
### M — Modify (also: Magnify / Minimize)
|
|
25
|
+
What can be changed? Size, shape, color, meaning, frequency, intensity?
|
|
26
|
+
- Make it 10x bigger or smaller
|
|
27
|
+
- Change the speed, frequency, or intensity
|
|
28
|
+
- Alter the form factor entirely
|
|
29
|
+
|
|
30
|
+
### P — Put to Other Use
|
|
31
|
+
Can this serve a different purpose? New contexts? New users? New markets?
|
|
32
|
+
- Repurpose for a completely different audience
|
|
33
|
+
- Use the byproduct as the main product
|
|
34
|
+
|
|
35
|
+
### E — Eliminate
|
|
36
|
+
What can be removed? Simplify? What's non-essential?
|
|
37
|
+
- Remove the most complex component — what happens?
|
|
38
|
+
- Strip to the absolute minimum viable version
|
|
39
|
+
|
|
40
|
+
### R — Reverse (also: Rearrange)
|
|
41
|
+
What if the order were reversed? What if roles swapped? What if inside-out?
|
|
42
|
+
- Reverse the workflow
|
|
43
|
+
- Let the user become the provider
|
|
44
|
+
- Flip the value proposition
|
|
45
|
+
|
|
46
|
+
## AI Application Notes
|
|
47
|
+
|
|
48
|
+
When using SCAMPER internally:
|
|
49
|
+
1. Pick 2-3 operators per batch (not all 7 — that produces too-similar ideas)
|
|
50
|
+
2. Apply each operator to a **different domain** from the domain wheel
|
|
51
|
+
3. Make the result vivid and specific, not abstract
|
|
52
|
+
4. Never tell the user you're "using SCAMPER" — just present the transformed ideas
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# What-If Scenarios Technique
|
|
2
|
+
|
|
3
|
+
**Origin**: Assumption-challenging methodology found across creative problem solving traditions.
|
|
4
|
+
|
|
5
|
+
**Interaction type**: Generate — AI constructs scenarios, user reacts to the most interesting ones.
|
|
6
|
+
|
|
7
|
+
## How It Works
|
|
8
|
+
|
|
9
|
+
1. **Identify core assumptions** about the topic (explicit and implicit)
|
|
10
|
+
2. **Challenge each assumption** with a "what if" that negates or transforms it
|
|
11
|
+
3. **Explore the scenario** — what would the world look like if this were true?
|
|
12
|
+
4. **Extract ideas** from the alternate reality
|
|
13
|
+
|
|
14
|
+
## Types of What-If
|
|
15
|
+
|
|
16
|
+
### Constraint Removal
|
|
17
|
+
- What if money were no object?
|
|
18
|
+
- What if there were no technical limitations?
|
|
19
|
+
- What if you had unlimited time?
|
|
20
|
+
- What if there were no regulations?
|
|
21
|
+
|
|
22
|
+
### Constraint Inversion
|
|
23
|
+
- What if the user had to pay NOT to use it?
|
|
24
|
+
- What if it only worked for 5 minutes per day?
|
|
25
|
+
- What if it required 100 people to operate?
|
|
26
|
+
|
|
27
|
+
### Context Shift
|
|
28
|
+
- What if this existed in 1920? In 2120?
|
|
29
|
+
- What if this were designed for children? For astronauts? For animals?
|
|
30
|
+
- What if this operated underwater? In zero gravity? In complete darkness?
|
|
31
|
+
|
|
32
|
+
### Scale Shift
|
|
33
|
+
- What if 1 billion people used this simultaneously?
|
|
34
|
+
- What if it were the size of a building? A molecule?
|
|
35
|
+
- What if it lasted 100 years? 100 milliseconds?
|
|
36
|
+
|
|
37
|
+
### Role Reversal
|
|
38
|
+
- What if the customer built it and the company used it?
|
|
39
|
+
- What if the problem were actually the solution?
|
|
40
|
+
- What if success and failure metrics were swapped?
|
|
41
|
+
|
|
42
|
+
## AI Application Notes
|
|
43
|
+
|
|
44
|
+
When using what-if internally:
|
|
45
|
+
1. Identify 2-3 non-obvious assumptions about the topic
|
|
46
|
+
2. Pick the most interesting what-if type for each assumption
|
|
47
|
+
3. Briefly explore the scenario (2-3 sentences), then extract a concrete idea
|
|
48
|
+
4. Present only the ideas — mention the "what if" framing only if it makes the idea clearer
|
|
49
|
+
5. Best used when ideas are getting too conventional or practical
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
---
|
|
2
|
+
session: {{session_id}}
|
|
3
|
+
topic: "{{topic}}"
|
|
4
|
+
phase: spark
|
|
5
|
+
created: {{created}}
|
|
6
|
+
total_ideas: {{total_ideas}}
|
|
7
|
+
total_batches: {{total_batches}}
|
|
8
|
+
favorites_count: {{favorites_count}}
|
|
9
|
+
domains_covered: {{domains_covered}}
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Spark Bank: {{topic}}
|
|
13
|
+
|
|
14
|
+
> {{total_ideas}} ideas generated across {{total_batches}} batches, covering {{domains_covered}}/12 domains.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Favorites
|
|
19
|
+
|
|
20
|
+
{{#each favorites}}
|
|
21
|
+
### {{id}} — {{title}}
|
|
22
|
+
|
|
23
|
+
{{description}}
|
|
24
|
+
|
|
25
|
+
*Domain: {{domain}}*
|
|
26
|
+
|
|
27
|
+
{{/each}}
|
|
28
|
+
|
|
29
|
+
{{#unless favorites}}
|
|
30
|
+
*No favorites selected yet.*
|
|
31
|
+
{{/unless}}
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## All Ideas by Theme
|
|
36
|
+
|
|
37
|
+
{{#each themes}}
|
|
38
|
+
### {{name}}
|
|
39
|
+
|
|
40
|
+
{{#each ideas}}
|
|
41
|
+
**{{id}}** — **{{title}}**
|
|
42
|
+
{{description}}
|
|
43
|
+
{{#if is_favorite}}*(favorite)*{{/if}}
|
|
44
|
+
*Domain: {{domain}}*
|
|
45
|
+
|
|
46
|
+
{{/each}}
|
|
47
|
+
|
|
48
|
+
{{/each}}
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Domain Coverage
|
|
53
|
+
|
|
54
|
+
| Domain | Ideas | Coverage |
|
|
55
|
+
|--------|-------|----------|
|
|
56
|
+
{{#each domain_stats}}
|
|
57
|
+
| {{name}} | {{count}} | {{bar}} |
|
|
58
|
+
{{/each}}
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Session Stats
|
|
63
|
+
|
|
64
|
+
- **Batches generated**: {{total_batches}}
|
|
65
|
+
- **Total ideas**: {{total_ideas}}
|
|
66
|
+
- **Favorites**: {{favorites_count}}
|
|
67
|
+
- **Techniques used**: {{techniques_used}}
|
|
68
|
+
- **Provocations injected**: {{provocations_count}}
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
*Generated by specsmd Ideation Flow — Spark skill*
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Flame - multi-perspective idea evaluation and scoring
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Activate Flame
|
|
6
|
+
|
|
7
|
+
**Command**: `/specsmd-flame`
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Activation
|
|
12
|
+
|
|
13
|
+
You are now the **Ideation Orchestrator** in **Flame mode** for specsmd.
|
|
14
|
+
|
|
15
|
+
**IMMEDIATELY** read and adopt the persona from:
|
|
16
|
+
→ `.specsmd/ideation/agents/orchestrator/agent.md`
|
|
17
|
+
|
|
18
|
+
Then execute the Flame skill:
|
|
19
|
+
→ `.specsmd/ideation/agents/orchestrator/skills/flame/SKILL.md`
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Critical First Steps
|
|
24
|
+
|
|
25
|
+
1. **Read Config**: `.specsmd/ideation/memory-bank.yaml`
|
|
26
|
+
2. **Read Interaction Protocol**: `.specsmd/ideation/shared/protocols/interaction-adaptation.md`
|
|
27
|
+
3. **If Spark Bank exists**: Load it and begin evaluation
|
|
28
|
+
4. **If ideas provided directly**: Accept them and begin evaluation
|
|
29
|
+
5. **If nothing**: Ask "Which ideas would you like to evaluate?"
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Routing Targets
|
|
34
|
+
|
|
35
|
+
- **Back to Orchestrator**: `/specsmd-ideation`
|
|
36
|
+
- **To Spark**: `/specsmd-spark`
|
|
37
|
+
- **To Forge**: `/specsmd-forge`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Begin
|
|
42
|
+
|
|
43
|
+
Activate now. Read the Flame skill and start evaluating ideas.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Forge - shape top ideas into actionable concept briefs
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Activate Forge
|
|
6
|
+
|
|
7
|
+
**Command**: `/specsmd-forge`
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Activation
|
|
12
|
+
|
|
13
|
+
You are now the **Ideation Orchestrator** in **Forge mode** for specsmd.
|
|
14
|
+
|
|
15
|
+
**IMMEDIATELY** read and adopt the persona from:
|
|
16
|
+
→ `.specsmd/ideation/agents/orchestrator/agent.md`
|
|
17
|
+
|
|
18
|
+
Then execute the Forge skill:
|
|
19
|
+
→ `.specsmd/ideation/agents/orchestrator/skills/forge/SKILL.md`
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Critical First Steps
|
|
24
|
+
|
|
25
|
+
1. **Read Config**: `.specsmd/ideation/memory-bank.yaml`
|
|
26
|
+
2. **Read Interaction Protocol**: `.specsmd/ideation/shared/protocols/interaction-adaptation.md`
|
|
27
|
+
3. **If Flame Report exists**: Load shortlisted ideas and begin shaping
|
|
28
|
+
4. **If ideas provided directly**: Accept them and begin shaping
|
|
29
|
+
5. **If nothing**: Ask "Which ideas would you like to develop into concepts?"
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Routing Targets
|
|
34
|
+
|
|
35
|
+
- **Back to Orchestrator**: `/specsmd-ideation`
|
|
36
|
+
- **To Spark**: `/specsmd-spark`
|
|
37
|
+
- **To Flame**: `/specsmd-flame`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Begin
|
|
42
|
+
|
|
43
|
+
Activate now. Read the Forge skill and start shaping concepts.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Ideation Flow - creative idea generation, evaluation, and shaping
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Activate Ideation Flow
|
|
6
|
+
|
|
7
|
+
**Command**: `/specsmd-ideation`
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Activation
|
|
12
|
+
|
|
13
|
+
You are now the **Ideation Orchestrator** for specsmd.
|
|
14
|
+
|
|
15
|
+
**IMMEDIATELY** read and adopt the persona from:
|
|
16
|
+
→ `.specsmd/ideation/agents/orchestrator/agent.md`
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Critical First Steps
|
|
21
|
+
|
|
22
|
+
1. **Read Config**: `.specsmd/ideation/memory-bank.yaml`
|
|
23
|
+
2. **Check Sessions**: Look for active sessions in `.specs-ideation/sessions/`
|
|
24
|
+
3. **Route**:
|
|
25
|
+
- Topic provided → jump to Spark skill
|
|
26
|
+
- Ideas provided → jump to Flame skill
|
|
27
|
+
- Concepts provided → jump to Forge skill
|
|
28
|
+
- Nothing → ask "What would you like to explore ideas about?"
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Your Skills
|
|
33
|
+
|
|
34
|
+
- **Spark**: `.specsmd/ideation/agents/orchestrator/skills/spark/SKILL.md` → Generate ideas
|
|
35
|
+
- **Flame**: `.specsmd/ideation/agents/orchestrator/skills/flame/SKILL.md` → Evaluate ideas
|
|
36
|
+
- **Forge**: `.specsmd/ideation/agents/orchestrator/skills/forge/SKILL.md` → Shape concepts
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Shared Protocols
|
|
41
|
+
|
|
42
|
+
- **Anti-Bias**: `.specsmd/ideation/shared/protocols/anti-bias.md`
|
|
43
|
+
- **Deep Thinking**: `.specsmd/ideation/shared/protocols/deep-thinking.md`
|
|
44
|
+
- **Diverge-Converge**: `.specsmd/ideation/shared/protocols/diverge-converge.md`
|
|
45
|
+
- **Interaction Adaptation**: `.specsmd/ideation/shared/protocols/interaction-adaptation.md`
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## Begin
|
|
50
|
+
|
|
51
|
+
Activate now. Read your agent definition and start ideating.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Spark - rapid idea generation with cross-domain diversity
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Activate Spark
|
|
6
|
+
|
|
7
|
+
**Command**: `/specsmd-spark`
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Activation
|
|
12
|
+
|
|
13
|
+
You are now the **Ideation Orchestrator** in **Spark mode** for specsmd.
|
|
14
|
+
|
|
15
|
+
**IMMEDIATELY** read and adopt the persona from:
|
|
16
|
+
→ `.specsmd/ideation/agents/orchestrator/agent.md`
|
|
17
|
+
|
|
18
|
+
Then execute the Spark skill:
|
|
19
|
+
→ `.specsmd/ideation/agents/orchestrator/skills/spark/SKILL.md`
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Critical First Steps
|
|
24
|
+
|
|
25
|
+
1. **Read Config**: `.specsmd/ideation/memory-bank.yaml`
|
|
26
|
+
2. **Read Anti-Bias Protocol**: `.specsmd/ideation/shared/protocols/anti-bias.md`
|
|
27
|
+
3. **Read Deep Thinking Protocol**: `.specsmd/ideation/shared/protocols/deep-thinking.md`
|
|
28
|
+
4. **If topic provided**: Jump straight to generating the first batch
|
|
29
|
+
5. **If no topic**: Ask "What would you like to explore ideas about?" — then generate immediately
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Routing Targets
|
|
34
|
+
|
|
35
|
+
- **Back to Orchestrator**: `/specsmd-ideation`
|
|
36
|
+
- **To Flame**: `/specsmd-flame`
|
|
37
|
+
- **To Forge**: `/specsmd-forge`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Begin
|
|
42
|
+
|
|
43
|
+
Activate now. Read the Spark skill and start generating ideas.
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
# Ideation Flow Configuration
|
|
2
|
+
# Spark → Flame → Forge — Creative ideation for AI-native thinkers
|
|
3
|
+
|
|
4
|
+
# Flow Version
|
|
5
|
+
version: "1.0.0"
|
|
6
|
+
|
|
7
|
+
# Artifact folder (created at project initialization)
|
|
8
|
+
artifact_root: ".specs-ideation"
|
|
9
|
+
|
|
10
|
+
# Structure created at project initialization
|
|
11
|
+
structure:
|
|
12
|
+
- path: sessions/
|
|
13
|
+
description: "Ideation sessions with spark banks, flame reports, and concept briefs"
|
|
14
|
+
- path: standards/
|
|
15
|
+
description: "Project standards (optional, for context-aware ideation)"
|
|
16
|
+
|
|
17
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
18
|
+
# SESSION MANAGEMENT
|
|
19
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
20
|
+
|
|
21
|
+
sessions:
|
|
22
|
+
output_dir: ".specs-ideation/sessions"
|
|
23
|
+
naming:
|
|
24
|
+
format: "{topic-slug}-{YYYYMMDD}"
|
|
25
|
+
example: "ai-onboarding-20260208"
|
|
26
|
+
note: "Kebab-case topic slug + date"
|
|
27
|
+
|
|
28
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
29
|
+
# SCHEMA DEFINITION (Source of Truth for Agents)
|
|
30
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
31
|
+
|
|
32
|
+
schema:
|
|
33
|
+
# Session Artifacts
|
|
34
|
+
sessions: ".specs-ideation/sessions/"
|
|
35
|
+
session_folder: ".specs-ideation/sessions/{session-id}/"
|
|
36
|
+
session_state: ".specs-ideation/sessions/{session-id}/session.yaml"
|
|
37
|
+
spark_bank: ".specs-ideation/sessions/{session-id}/spark-bank.md"
|
|
38
|
+
flame_report: ".specs-ideation/sessions/{session-id}/flame-report.md"
|
|
39
|
+
concept_briefs: ".specs-ideation/sessions/{session-id}/concept-briefs/"
|
|
40
|
+
concept_brief: ".specs-ideation/sessions/{session-id}/concept-briefs/{concept-name}.md"
|
|
41
|
+
|
|
42
|
+
# Standards (optional)
|
|
43
|
+
standards: ".specs-ideation/standards/"
|
|
44
|
+
|
|
45
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
46
|
+
# SESSION STATE (session.yaml)
|
|
47
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
48
|
+
|
|
49
|
+
session_state:
|
|
50
|
+
fields:
|
|
51
|
+
session:
|
|
52
|
+
- id: "Session identifier (topic-slug-date)"
|
|
53
|
+
- topic: "The ideation topic"
|
|
54
|
+
- created: "ISO 8601 timestamp"
|
|
55
|
+
- updated: "ISO 8601 timestamp"
|
|
56
|
+
- phase: "spark | flame | forge | complete"
|
|
57
|
+
spark:
|
|
58
|
+
- batches_generated: "Number of idea batches generated"
|
|
59
|
+
- total_ideas: "Total ideas generated"
|
|
60
|
+
- favorites: "List of favorited idea IDs"
|
|
61
|
+
- domains_used: "List of domain sectors used"
|
|
62
|
+
- domains_remaining: "List of domain sectors not yet used"
|
|
63
|
+
- techniques_used: "List of techniques applied"
|
|
64
|
+
flame:
|
|
65
|
+
- ideas_evaluated: "Number of ideas evaluated"
|
|
66
|
+
- shortlist: "List of shortlisted idea IDs"
|
|
67
|
+
- scoring_method: "Scoring method used (six-hats, impact-feasibility, etc.)"
|
|
68
|
+
forge:
|
|
69
|
+
- concepts_shaped: "Number of concepts shaped"
|
|
70
|
+
- briefs_generated: "List of concept brief filenames"
|
|
71
|
+
|
|
72
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
73
|
+
# DATA CONVENTIONS
|
|
74
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
75
|
+
|
|
76
|
+
conventions:
|
|
77
|
+
timestamps:
|
|
78
|
+
format: "ISO 8601 with time and timezone"
|
|
79
|
+
pattern: "YYYY-MM-DDTHH:MM:SSZ"
|
|
80
|
+
example: "2026-02-08T10:30:00Z"
|
|
81
|
+
|
|
82
|
+
naming:
|
|
83
|
+
sessions:
|
|
84
|
+
format: "{topic-slug}-{YYYYMMDD}"
|
|
85
|
+
example: "ai-onboarding-20260208"
|
|
86
|
+
note: "Kebab-case topic slug + date"
|
|
87
|
+
|
|
88
|
+
ideas:
|
|
89
|
+
format: "S{batch}-{number}"
|
|
90
|
+
example: "S1-3"
|
|
91
|
+
note: "Spark batch number + idea number within batch"
|
|
92
|
+
|
|
93
|
+
concepts:
|
|
94
|
+
format: "{concept-name}"
|
|
95
|
+
example: "gamified-onboarding"
|
|
96
|
+
note: "Kebab-case concept name"
|
|
97
|
+
|
|
98
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
99
|
+
# SPARK CONFIGURATION
|
|
100
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
101
|
+
|
|
102
|
+
spark:
|
|
103
|
+
batch_size: 5 # Ideas per batch
|
|
104
|
+
target_count: 50 # Min ideas before suggesting convergence
|
|
105
|
+
max_batches: 20 # Safety limit
|
|
106
|
+
|
|
107
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
108
|
+
# DEEP THINKING
|
|
109
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
110
|
+
|
|
111
|
+
deep_thinking:
|
|
112
|
+
prefer_mcp: true # Use sequential-thinking MCP if available
|
|
113
|
+
fallback: built-in # Use built-in protocol if MCP unavailable
|
|
114
|
+
steps_per_batch: 6 # Reasoning steps per idea batch
|
|
115
|
+
visibility: collapsed # visible | collapsed | hidden
|
|
116
|
+
|
|
117
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
118
|
+
# ANTI-BIAS ENGINE
|
|
119
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
120
|
+
|
|
121
|
+
anti_bias:
|
|
122
|
+
domain_diversity_min: 3 # Min different domains per batch of 5
|
|
123
|
+
provocation_frequency: 15 # Every N ideas, inject a provocation
|
|
124
|
+
perspective_shift_frequency: 20 # Every N ideas, shift perspective
|
|
125
|
+
domains:
|
|
126
|
+
- Technology/Engineering
|
|
127
|
+
- Human Psychology/Behavior
|
|
128
|
+
- Business/Economics
|
|
129
|
+
- Nature/Biology
|
|
130
|
+
- Art/Design/Aesthetics
|
|
131
|
+
- Games/Play
|
|
132
|
+
- Social/Community
|
|
133
|
+
- Physical Space/Architecture
|
|
134
|
+
- Time/Temporal
|
|
135
|
+
- Extreme/Edge Cases
|
|
136
|
+
- Inversion/Opposite
|
|
137
|
+
- Random Cross-Pollination
|
|
138
|
+
|
|
139
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
140
|
+
# FLAME CONFIGURATION
|
|
141
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
142
|
+
|
|
143
|
+
flame:
|
|
144
|
+
default_method: six-hats-rapid
|
|
145
|
+
shortlist_size: 5 # Top ideas to carry forward
|
|
146
|
+
|
|
147
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
148
|
+
# FORGE CONFIGURATION
|
|
149
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
150
|
+
|
|
151
|
+
forge:
|
|
152
|
+
default_method: disney-strategy
|
|
153
|
+
include_pitch: true
|
|
154
|
+
include_risks: true
|
|
155
|
+
|
|
156
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
157
|
+
# INTERACTION ADAPTATION
|
|
158
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
159
|
+
#
|
|
160
|
+
# The technique determines interaction mode — not a user toggle.
|
|
161
|
+
# Phase ratios (generate / elicit / co-build):
|
|
162
|
+
# Spark: 80% / 5% / 15%
|
|
163
|
+
# Flame: 60% / 15% / 25%
|
|
164
|
+
# Forge: 40% / 20% / 40%
|
|
165
|
+
#
|
|
166
|
+
# Rules:
|
|
167
|
+
# - Never more than 2 questions in a row before generating something
|
|
168
|
+
# - "you decide" → more generation
|
|
169
|
+
# - "ask me" → more elicitation
|
|
170
|
+
# - Every elicitative technique has an ai_fallback so flow never stalls
|
|
171
|
+
|
|
172
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
173
|
+
# AGENT OWNERSHIP
|
|
174
|
+
# ─────────────────────────────────────────────────────────────────────────────────
|
|
175
|
+
|
|
176
|
+
ownership:
|
|
177
|
+
orchestrator: [sessions, standards]
|