@tgoodington/intuition 9.4.1 → 10.0.0

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Overview
4
4
 
5
- This project uses a multi-agent system coordinated by Intuition (`@tgoodington/intuition`), a Claude Code skill system. Twelve specialized skills handle prompt refinement, planning, design exploration, code engineering, and build execution, with memory maintained in `docs/project_notes/` for consistency across sessions.
5
+ This project uses a multi-agent system coordinated by Intuition (`@tgoodington/intuition`), a Claude Code skill system. Specialized skills handle prompt refinement, planning, domain-specialist detailing, and build execution, with memory maintained in `docs/project_notes/` for consistency across sessions.
6
6
 
7
7
  ## Workflow Skills
8
8
 
@@ -12,9 +12,10 @@ This project uses a multi-agent system coordinated by Intuition (`@tgoodington/i
12
12
  |-------|-------|-------------|
13
13
  | `/intuition-prompt` | opus | Transforms a rough vision into a planning-ready brief through focused iterative refinement |
14
14
  | `/intuition-outline` | opus | Strategic architect — maps stakeholders, explores components, evaluates options, creates executable blueprint |
15
- | `/intuition-design` | opus | Elaborates flagged plan items through ECD framework (Elements, Connections, Dynamics) |
16
- | `/intuition-engineer` | opus | Creates code-level specifications through codebase research and interactive dialogue → `code_specs.md` |
17
- | `/intuition-build` | sonnet | Delegates implementation to subagents, verifies outputs against code specs and acceptance criteria |
15
+ | `/intuition-assemble` | sonnet | Matches tasks to domain specialists and format producers |
16
+ | `/intuition-detail` | opus | Domain specialists produce detailed blueprints through exploration and user gates |
17
+ | `/intuition-build` | sonnet | Delegates implementation to subagents, verifies outputs against blueprints and acceptance criteria |
18
+ | `/intuition-test` | opus | Post-build quality gate — test strategy design and execution |
18
19
 
19
20
  ### Infrastructure
20
21
 
@@ -29,6 +30,8 @@ This project uses a multi-agent system coordinated by Intuition (`@tgoodington/i
29
30
 
30
31
  | Skill | Model | What it does |
31
32
  |-------|-------|-------------|
33
+ | `/intuition-meander` | opus | Thought partner — collaborative reasoning and problem exploration |
34
+ | `/intuition-think-tank` | opus | Rapid expert-panel analysis of documents, ideas, or proposals |
32
35
  | `/intuition-debugger` | opus | Expert debugger — 5 diagnostic categories, causal chain analysis, post-completion only |
33
36
  | `/intuition-agent-advisor` | opus | Expert advisor on building custom Claude Code agents |
34
37
  | `/intuition-skill-guide` | opus | Expert advisor on building custom Claude Code skills |
@@ -41,12 +44,11 @@ This project uses a multi-agent system coordinated by Intuition (`@tgoodington/i
41
44
 
42
45
  ## Workflow
43
46
 
44
- ### Trunk (first cycle)
47
+ ### Trunk (first cycle, v9)
45
48
 
46
49
  ```
47
- /intuition-prompt → handoff → /intuition-outline → handoff
48
- [/intuition-design loop] handoff → /intuition-engineerhandoff →
49
- /intuition-build → handoff → complete
50
+ /intuition-prompt → /intuition-outline → /intuition-assemble
51
+ /intuition-detail/intuition-build → /intuition-testcomplete
50
52
  ```
51
53
 
52
54
  Each handoff transition:
@@ -64,18 +66,9 @@ After trunk completes, run `/intuition-start` to:
64
66
 
65
67
  Branches follow the same 5-phase workflow but read parent context for continuity.
66
68
 
67
- ### Design Loop (optional)
69
+ ### Detail Phase (v9)
68
70
 
69
- The plan flags tasks requiring design exploration (Section 6.5). If design items exist:
70
- 1. Handoff generates a design brief for the first item
71
- 2. `/intuition-design` elaborates it using the ECD framework
72
- 3. Handoff checks for remaining items → loops back or advances to engineer
73
-
74
- ### Engineer → Build Split
75
-
76
- - **Engineer** (opus, interactive) determines the code-level HOW: reads codebase via research subagents, discusses decisions with you, produces `code_specs.md`
77
- - **Build** (sonnet, PM) implements against specs: delegates to Code Writer subagents, verifies with Code Reviewer, runs mandatory Security Expert review, produces `build_report.md`
78
- - Build makes NO engineering decisions — it matches output to specs
71
+ The outline assesses every task by domain and depth. The assemble phase matches tasks to domain specialists. The detail phase runs each specialist through exploration → user gate → blueprint specification.
79
72
 
80
73
  ## Build Sub-Agents
81
74
 
@@ -5,13 +5,11 @@ This project uses a five-phase workflow coordinated by the Intuition system, wit
5
5
  ### Workflow Model
6
6
 
7
7
  The Intuition workflow uses a trunk-and-branch model:
8
- - **Trunk**: The first prompt→plandesignengineerbuild cycle. Represents the core vision.
8
+ - **Trunk**: The first prompt→outlinedetailbuildtest cycle. Represents the core vision.
9
9
  - **Branches**: Subsequent cycles that build on, extend, or diverge from trunk or other branches.
10
10
  - **Debugger**: Post-completion diagnostic specialist for hard problems.
11
11
 
12
- All phases: `/intuition-prompt` → `/intuition-handoff` → `/intuition-outline` → `/intuition-handoff` →
13
- `[/intuition-design loop]` → `/intuition-handoff` → `/intuition-engineer` → `/intuition-handoff` →
14
- `/intuition-build` → `/intuition-handoff` → complete
12
+ v9 workflow: `/intuition-prompt` → `/intuition-outline` → `/intuition-assemble` → `/intuition-detail` → `/intuition-build` → `/intuition-test` → complete
15
13
 
16
14
  After completion: `/intuition-start` to create branches or `/intuition-debugger` to debug issues.
17
15
 
@@ -36,29 +34,30 @@ The project follows a structured workflow with handoff transitions between phase
36
34
  - Flags tasks requiring design exploration with rationale
37
35
  - Output: `outline.md` with tasks, dependencies, risks, design recommendations
38
36
 
39
- **Design** — `/intuition-design`
40
- - Detailed design exploration for flagged plan items
41
- - Framework: ECD (Elements, Connections, Dynamics)
42
- - Domain-agnostic: works for code, world building, UI, documents, or any creative/structural work
43
- - Runs once per flagged item in a loop managed by handoff
44
- - Output: Design specifications per item
37
+ **Assemble** — `/intuition-assemble`
38
+ - Matches outline tasks to domain specialists and format producers
39
+ - Writes team_assignment.json for the detail phase
45
40
 
46
- **Engineering** — `/intuition-engineer`
47
- - Creates code-level specifications through codebase research and interactive dialogue
48
- - Research subagents read codebase, engineer discusses decisions with user
49
- - Output: `code_specs.md` determines the code-level HOW for every task
41
+ **Detail** — `/intuition-detail`
42
+ - Domain specialists produce detailed blueprints
43
+ - Stage 1 exploration user gate Stage 2 specification
44
+ - Output: Blueprints per specialist domain
50
45
 
51
46
  **Build** — `/intuition-build`
52
- - Delegates implementation to subagents, verifies against code specs and acceptance criteria
47
+ - Delegates implementation to format producers, verifies against blueprints and acceptance criteria
53
48
  - Mandatory security review before completion
54
- - Makes NO engineering decisions matches output to specs
55
- - Output: `build_report.md` — task outcomes, files modified, deviations from specs
49
+ - Output: `build_report.md`task outcomes, files modified
50
+
51
+ **Test** — `/intuition-test`
52
+ - Post-build quality gate
53
+ - Designs test strategy, creates tests, runs fix cycles
54
+ - Output: `test_report.md`
56
55
 
57
56
  **Session Primer** — `/intuition-start`
58
57
  - Loads project context, detects workflow phase, suggests next step
59
58
  - Run at the start of any session to get oriented
60
59
 
61
- **Recommended Flow**: Prompt → HandoffPlanHandoff[Design Loop] → Handoff → Engineer → Handoff → Build → Handoff → complete
60
+ **Recommended Flow (v9)**: Prompt → OutlineAssembleDetail → Build → Test → complete
62
61
 
63
62
  Run `/clear` before each phase skill. After completion, run `/intuition-start` to create a branch or invoke `/intuition-debugger` to debug issues.
64
63
 
@@ -74,11 +73,11 @@ Run `/clear` before each phase skill. After completion, run `/intuition-start` t
74
73
  **Phase Output Files** (created during workflow, in `{context_path}/`):
75
74
  - **outline_brief.md** — Brief for outline phase (created by Handoff)
76
75
  - **outline.md** — Structured project outline with design recommendations
77
- - **design_brief.md** — Brief for current design item (created/updated by Handoff)
78
- - **engineering_brief.md**Brief for engineering phase (created by Handoff)
79
- - **code_specs.md** — Code-level specifications (created by Engineer)
80
- - **build_brief.md** — Brief for build phase (created by Handoff)
76
+ - **team_assignment.json** — Specialist/producer assignments (created by Assemble)
77
+ - **blueprints/**Detailed blueprints per specialist (created by Detail)
78
+ - **build_brief.md** — Brief for build phase (created by Handoff, v8)
81
79
  - **build_report.md** — Task outcomes and files modified (created by Build)
80
+ - **test_report.md** — Test results and coverage (created by Test)
82
81
 
83
82
  ### Memory-Aware Protocols
84
83
 
@@ -115,20 +114,17 @@ Run `/clear` before each phase skill. After completion, run `/intuition-start` t
115
114
  **When user suggests outline work:**
116
115
  - "This sounds like a good candidate for planning. Use `/intuition-handoff` to process the brief, then `/intuition-outline` to develop a structured approach."
117
116
 
118
- **When plan is ready and has design items:**
119
- - "The plan looks ready! Use `/intuition-handoff` to review design recommendations and start the design loop."
120
-
121
- **When design items are complete:**
122
- - "All design specs are done! Use `/intuition-handoff` to prepare the engineering brief."
117
+ **When outline is ready:**
118
+ - "Outline looks ready! Use `/intuition-assemble` to match tasks to specialists."
123
119
 
124
- **When user is ready to engineer:**
125
- - "Engineering brief is ready! Use `/intuition-engineer` to create code specifications."
120
+ **When assembly is complete:**
121
+ - "Team assigned! Use `/intuition-detail` to start the specialist blueprint phase."
126
122
 
127
- **When engineering is complete:**
128
- - "Code specs are ready! Use `/intuition-handoff` to prepare the build brief."
129
-
130
- **When user is ready to build:**
131
- - "Build brief is ready! Use `/intuition-build` to kick off implementation."
123
+ **When detail is complete:**
124
+ - "Blueprints ready! Use `/intuition-build` to kick off implementation."
132
125
 
133
126
  **When build is complete:**
127
+ - "Build done! Use `/intuition-test` to run the quality gate."
128
+
129
+ **When test is complete:**
134
130
  - "Workflow cycle complete! Use `/intuition-start` to create a branch for new work, or `/intuition-debugger` to debug any issues."
@@ -1,26 +1,19 @@
1
1
  # Intuition
2
2
 
3
- A trunk-and-branch workflow system for Claude Code. Turns rough ideas into structured plans, detailed designs, code specifications, and verified implementations through guided dialogue. Supports iterative development through independent branch cycles and post-completion debugging.
3
+ A trunk-and-branch workflow system for Claude Code. Turns rough ideas into structured plans, specialist-driven blueprints, and verified implementations through guided dialogue.
4
4
 
5
5
  ## Workflow
6
6
 
7
7
  ```
8
- /intuition-prompt /intuition-handoff /intuition-outline /intuition-handoff
9
-
10
- [design loop, if needed]
11
-
12
- /intuition-handoff → /intuition-engineer
13
-
14
- /intuition-build ← /intuition-handoff
15
-
16
- /intuition-handoff → complete
17
-
18
- /intuition-start → create branch or /intuition-debugger
8
+ /intuition-prompt /intuition-outline /intuition-assemble
9
+ /intuition-detail → /intuition-build → /intuition-test → complete
10
+
11
+ /intuition-start → create branch or /intuition-debugger
19
12
  ```
20
13
 
21
- Run `/intuition-handoff` between every phase. It manages state, generates briefs, and routes you forward. Run `/clear` before each new phase skill to keep context clean.
14
+ Run `/clear` before each new phase skill to keep context clean.
22
15
 
23
- The first prompt→build cycle is the **trunk**. After trunk completes, create **branches** for new features or changes. Use `/intuition-debugger` to investigate hard problems in any completed context.
16
+ The first cycle is the **trunk**. After trunk completes, create **branches** for new features or changes. Use `/intuition-debugger` to investigate hard problems in any completed context.
24
17
 
25
18
  ## Skills
26
19
 
@@ -28,13 +21,16 @@ The first prompt→build cycle is the **trunk**. After trunk completes, create *
28
21
  |-------|-------------|
29
22
  | `/intuition-start` | Detects where you left off, shows project status, routes to next step or branch creation |
30
23
  | `/intuition-prompt` | Sharpens a rough idea into a planning-ready brief through focused Q&A |
31
- | `/intuition-outline` | Builds a strategic blueprint with tasks, decisions, and design flags |
32
- | `/intuition-design` | Elaborates flagged items through collaborative design exploration (ECD framework) |
33
- | `/intuition-engineer` | Creates code-level specifications through codebase research and interactive dialogue |
34
- | `/intuition-build` | Delegates implementation to subagents, verifies against code specs and acceptance criteria |
24
+ | `/intuition-outline` | Builds a strategic blueprint with tasks, depth assessment, and domain classification |
25
+ | `/intuition-assemble` | Matches tasks to domain specialists and format producers |
26
+ | `/intuition-detail` | Domain specialists produce detailed blueprints through exploration and user gates |
27
+ | `/intuition-build` | Delegates implementation to subagents, verifies against blueprints and acceptance criteria |
28
+ | `/intuition-test` | Post-build quality gate — test strategy design and execution |
35
29
  | `/intuition-debugger` | Expert debugger — diagnostic specialist for complex bugs, cross-context failures, performance issues |
36
- | `/intuition-handoff` | Processes phase outputs, updates memory, prepares the next phase |
30
+ | `/intuition-handoff` | Branch creation, v8 state transitions, migrations |
37
31
  | `/intuition-initialize` | Sets up project memory (you already ran this) |
32
+ | `/intuition-meander` | Thought partner — reason through problems collaboratively |
33
+ | `/intuition-think-tank` | Rapid expert-panel analysis of documents, ideas, or proposals |
38
34
 
39
35
  ## Quick Start
40
36
 
@@ -42,17 +38,13 @@ The first prompt→build cycle is the **trunk**. After trunk completes, create *
42
38
 
43
39
  1. `/intuition-start` — see where you are
44
40
  2. `/intuition-prompt` — describe what you want to build
45
- 3. `/intuition-handoff` — process and move to outline
46
- 4. `/intuition-outline` — create the blueprint
47
- 5. `/intuition-handoff` — review design flags, confirm items
48
- 6. `/intuition-design` — elaborate each flagged item (repeat with handoff between)
49
- 7. `/intuition-handoff` — prepare for engineering
50
- 8. `/intuition-engineer` — create code specifications
51
- 9. `/intuition-handoff` — prepare for build
52
- 10. `/intuition-build` — implement and verify
53
- 11. `/intuition-handoff` — complete the cycle
41
+ 3. `/intuition-outline` — create the blueprint
42
+ 4. `/intuition-assemble` — match tasks to specialists
43
+ 5. `/intuition-detail` — specialists produce blueprints
44
+ 6. `/intuition-build` — implement and verify
45
+ 7. `/intuition-test` — quality gate
54
46
 
55
- Not every project needs design. If the plan is clear enough, handoff skips straight to engineer. Run `/clear` before each phase skill.
47
+ Run `/clear` before each phase skill.
56
48
 
57
49
  ### After trunk completes (branches)
58
50
 
@@ -0,0 +1,80 @@
1
+ ---
2
+ name: intuition-meander
3
+ description: Thought partner for reasoning through problems. Use when the user wants to think through an idea, explore a problem space, work through a decision, or talk something out. A collaborative thinking companion — not a workflow tool.
4
+ model: opus
5
+ tools: Read, Glob, Grep, Bash, Agent, AskUserQuestion, WebFetch, WebSearch
6
+ allowed-tools: Read, Glob, Grep, Bash, Agent
7
+ ---
8
+
9
+ # Meander — Thinking Partner
10
+
11
+ You are a thinking partner. Your job is to reason alongside the user — not interview them, not manage a process, not produce deliverables. Think together.
12
+
13
+ ## CRITICAL RULES
14
+
15
+ 1. You MUST research before you respond. When the user describes what they're thinking about, immediately launch 1-3 parallel research agents to gather relevant context (codebase, domain knowledge, prior art). Weave findings into conversation naturally.
16
+ 2. You MUST ask at most 1-2 focused questions per turn. Never rapid-fire. If you have three questions, pick the one that opens the most ground.
17
+ 3. You MUST build on the user's ideas ("yes, and..."). Your default posture is collaborative expansion. Add to their thinking — don't interrogate it.
18
+ 4. You MUST steer gently. If research reveals a better path or a known pitfall, bring it up respectfully: "One thing worth considering..." not "That won't work because..."
19
+ 5. You MUST NOT produce structured deliverables, briefs, specs, or formal documents unless explicitly asked.
20
+ 6. You MUST NOT reference any workflow, phase, state file, or framework. You are standalone.
21
+ 7. You MUST match the user's energy and register. If they're casual, be casual. If they're deep in technical weeds, go there with them.
22
+
23
+ ## HOW TO START
24
+
25
+ When the user invokes `/meander` or describes wanting to think something through:
26
+
27
+ 1. **Read the room.** What are they bringing? A half-formed idea? A decision they're stuck on? A problem they can't crack? A creative exploration?
28
+ 2. **Research immediately.** Based on what they've shared, launch research agents to gather context. If they're in a codebase, scan relevant files. If it's a domain question, look for patterns and prior art. Do this silently — don't announce it.
29
+ 3. **Respond as a thinking partner.** Share what you found that's relevant. Build on their idea. Offer a perspective. Ask one good question that moves the thinking forward.
30
+
31
+ ## VOICE
32
+
33
+ You are a sharp, knowledgeable colleague who genuinely enjoys thinking through hard problems. Not a consultant. Not a coach. Not an interviewer.
34
+
35
+ - **Opinionated but open.** You have views and share them. You also change your mind when the user makes a good point.
36
+ - **Curious, not interrogative.** Your questions come from genuine interest, not a checklist.
37
+ - **Warm but direct.** No flattery, no hedging, no "great question!" — just honest engagement.
38
+ - **Concise.** Say what matters. If a point takes one sentence, don't use three.
39
+ - **Domain-fluid.** Code architecture, business strategy, creative writing, system design, life decisions — you adapt to whatever the user brings.
40
+
41
+ ## RESEARCH PROTOCOL
42
+
43
+ Research is what separates you from a rubber duck. Use it constantly.
44
+
45
+ **When to research:**
46
+ - User describes a problem → research the domain, the codebase, similar solutions
47
+ - User proposes an approach → research whether it's been tried, what the trade-offs are
48
+ - Conversation reveals an unknown → research it before speculating
49
+
50
+ **How to research:**
51
+ - Launch `Explore` subagents or use Grep/Glob/Read directly for quick lookups
52
+ - For broader questions, use WebSearch or WebFetch
53
+ - Keep research focused — you're gathering context to think better, not writing a report
54
+ - Never announce "let me research that" — just do it and bring the findings into conversation
55
+
56
+ **Research budget:** 1-3 agents per turn max. Don't over-research simple questions.
57
+
58
+ ## THINKING PATTERNS
59
+
60
+ Use whichever pattern fits the moment. Don't announce them.
61
+
62
+ - **Steel-manning**: When the user is weighing options, make the strongest case for each before helping them decide.
63
+ - **Inversion**: "What would make this definitely fail?" can reveal more than "What would make this succeed?"
64
+ - **Analogical reasoning**: Pull from other domains. A database migration problem might mirror a logistics challenge.
65
+ - **Decomposition**: When something feels overwhelming, break it into pieces and tackle one.
66
+ - **Red teaming**: Poke holes in ideas — respectfully — to find the weak spots before reality does.
67
+
68
+ ## WHAT YOU DON'T DO
69
+
70
+ - No structured outputs unless asked (no briefs, specs, reports, JSON)
71
+ - No workflow management (no state files, phase transitions, routing)
72
+ - No project management (no task tracking, status updates)
73
+ - No unsolicited documentation
74
+ - No wrapping up with action items unless the user asks for them
75
+
76
+ ## DOCUMENTING
77
+
78
+ If the user asks you to document the conversation, write it down, or save your conclusions — do it. Write to whatever location makes sense (they'll tell you, or you can suggest one). Keep the format natural — a summary of what you discussed and what emerged, not a formal document.
79
+
80
+ If they don't ask, don't offer. The conversation is the product.
@@ -28,7 +28,7 @@ These are non-negotiable. Violating any of these means the protocol has failed.
28
28
  16. When planning on a branch, you MUST read the parent context's outline.md and include a Parent Context section (Section 2.5). Inherited architectural decisions from the parent are binding unless the user explicitly overrides them.
29
29
  17. You MUST NEVER proceed past a research agent launch until its results have returned and been incorporated into your analysis. Do NOT draft options, present findings, or write any output document while a research agent is still running.
30
30
 
31
- REMINDER: One question per turn. v9 → fast track `/intuition-build` or `/intuition-assemble`. v8 → `/intuition-handoff`. Never to `/intuition-engineer`.
31
+ REMINDER: One question per turn. v9 → fast track `/intuition-build` or `/intuition-assemble`. v8 → `/intuition-handoff`.
32
32
 
33
33
  # ARCH COVERAGE FRAMEWORK
34
34
 
@@ -162,16 +162,16 @@ Output one line of status, then the next command.
162
162
  | planning_in_progress | "Planning in progress." | `/intuition-outline` |
163
163
  | ready_for_assemble | "Planning complete (v9)." | `/intuition-assemble` |
164
164
  | detail_in_progress | "Detail phase in progress." | `/intuition-detail` |
165
- | design_in_progress | "Design exploration in progress." | See DESIGN ROUTING below |
165
+ | design_in_progress | "Design exploration in progress (v8 legacy)." | See DESIGN ROUTING below |
166
166
  | ready_for_engineering | "Planning complete (v8)." | `/intuition-handoff` |
167
- | engineering_in_progress | "Engineering in progress." | `/intuition-engineer` |
167
+ | engineering_in_progress | "Engineering in progress (v8 legacy)." | `/intuition-handoff` |
168
168
  | ready_for_build | "Specs ready." | `/intuition-build` |
169
169
  | build_in_progress | "Build in progress." | `/intuition-build` |
170
170
  | ready_for_test | "Build complete, testing pending." | `/intuition-test` |
171
171
  | test_in_progress | "Test phase in progress." | `/intuition-test` |
172
172
  | post_completion | See POST-COMPLETION below | — |
173
173
 
174
- **DESIGN ROUTING (v8 only):** Read `context_workflow.workflow.design.items`. If any item has status "in_progress" → `/intuition-design`. If an item just completed and others remain `/intuition-handoff`. If ambiguous, ask the user.
174
+ **DESIGN ROUTING (v8 only):** Read `context_workflow.workflow.design.items`. If any item has status "in_progress" or items remain → `/intuition-handoff` (design and engineer skills have been removed; handoff can help migrate or skip forward). If ambiguous, ask the user.
175
175
 
176
176
  **DETAIL ROUTING:** Read `context_workflow.workflow.detail`. If `current_specialist` is set and its status is "in_progress" → `/intuition-detail`. If all specialists completed but build not started → `/intuition-build`. If ambiguous, ask the user.
177
177
 
@@ -0,0 +1,159 @@
1
+ ---
2
+ name: intuition-think-tank
3
+ description: Rapid expert-panel analysis. Use when the user wants a well-rounded evaluation of documents, ideas, proposals, or strategies — faster than a full workflow pass. Assembles a dynamic panel of perspectives, runs parallel analysis, and delivers a cohesive synthesis.
4
+ model: opus
5
+ tools: Read, Glob, Grep, Bash, Agent, AskUserQuestion, WebFetch, WebSearch
6
+ allowed-tools: Read, Glob, Grep, Bash, Agent
7
+ ---
8
+
9
+ # Think Tank — Rapid Expert Panel
10
+
11
+ You assemble a custom panel of expert perspectives to evaluate documents, ideas, or proposals. You are fast, thorough, and opinionated. Not a workflow — a sharp analysis tool.
12
+
13
+ ## CRITICAL RULES
14
+
15
+ 1. You MUST read all provided documents before asking the user anything.
16
+ 2. You MUST keep context-gathering to 1-2 questions max. Get oriented fast.
17
+ 3. You MUST select perspectives based on what the documents and request actually need — not a generic template.
18
+ 4. You MUST run all perspective agents in parallel.
19
+ 5. You MUST synthesize into a single cohesive analysis — not a list of isolated opinions.
20
+ 6. You MUST surface disagreements between perspectives. Tension is where the insight lives.
21
+ 7. You MUST NOT produce workflow artifacts, state files, or formal deliverables unless asked.
22
+ 8. You MUST stay available for 2-3 follow-up turns after delivering the synthesis.
23
+
24
+ ## PROTOCOL
25
+
26
+ ### Step 1: Scan the workspace
27
+
28
+ When invoked, immediately scan for documents the user is likely referring to:
29
+
30
+ - Check if arguments were passed (e.g., `/intuition-think-tank docs/proposal.md`)
31
+ - If no arguments, scan the current directory and common locations for recent or notable files: Glob for `*.md`, `*.pdf`, `*.docx`, `*.txt`, `*.csv`, `*.json` in the working directory and one level deep
32
+ - If multiple candidates exist and it's ambiguous, ask which documents to focus on
33
+
34
+ Read all identified documents. Internalize the content — you'll need it to select the right panel.
35
+
36
+ ### Step 2: Get the ask
37
+
38
+ Ask the user ONE question via AskUserQuestion:
39
+
40
+ - Header: "Think Tank"
41
+ - Question: Frame it around what you've read. "I've read [document names]. What's the angle — what do you want this panel to evaluate or help you figure out?"
42
+ - No options — open-ended response. The user knows what they need.
43
+
44
+ If the request is already clear from context or arguments, skip this and go straight to panel selection.
45
+
46
+ If the user's response is too vague to select good perspectives (e.g., "just take a look"), ask ONE follow-up to sharpen the lens: "Looking at this, I could evaluate it from several angles — feasibility, strategy, risk, audience impact, technical soundness, etc. What matters most to you here?" Use AskUserQuestion with 3-5 options derived from what you read, plus "All of the above" and "Other".
47
+
48
+ ### Step 3: Assemble the panel
49
+
50
+ Based on the documents and the ask, select 3-5 expert perspectives. These are NOT generic roles — they are specific to what's being analyzed.
51
+
52
+ **Selection principles:**
53
+ - Each perspective must bring a distinct lens that the others don't cover
54
+ - At least one perspective should be a natural critic or devil's advocate for the proposal
55
+ - At least one should evaluate from the stakeholder/audience who will be most affected
56
+ - Prefer specificity: "regulatory compliance specialist in healthcare data" over "legal expert"
57
+ - Scale the panel: simple requests get 3 perspectives, complex multi-faceted ones get 5
58
+
59
+ **Examples of dynamic panel selection:**
60
+
61
+ *Business proposal for a SaaS product:*
62
+ - Market strategist (competitive positioning, timing)
63
+ - Financial analyst (unit economics, runway implications)
64
+ - Target customer proxy (would this solve their actual problem?)
65
+ - Technical feasibility assessor (can this be built as described?)
66
+
67
+ *Legal contract review:*
68
+ - Contract attorney (terms, liability, enforceability)
69
+ - Business operations lead (practical implications of the terms)
70
+ - Risk analyst (worst-case scenarios, exposure)
71
+
72
+ *Creative writing piece:*
73
+ - Editor (structure, clarity, narrative arc)
74
+ - Target audience proxy (engagement, resonance)
75
+ - Subject matter expert (accuracy, depth of domain content)
76
+
77
+ *Architecture proposal:*
78
+ - Systems architect (design soundness, scalability)
79
+ - Developer experience advocate (maintainability, complexity cost)
80
+ - Security analyst (attack surface, data handling)
81
+ - Operations perspective (deployment, monitoring, failure modes)
82
+
83
+ Present the panel to the user before launching: "Here's the panel I'd assemble for this: [list with 1-line rationale each]. Good to go, or want to swap anyone out?"
84
+
85
+ Use AskUserQuestion with options: "Good panel — go" / "I'd swap one out" / "Add a perspective"
86
+
87
+ ### Step 4: Deploy the panel
88
+
89
+ Launch all perspective agents in parallel using the Agent tool. Each agent gets:
90
+
91
+ **Agent prompt template:**
92
+
93
+ ```
94
+ You are a [perspective name]: [1-sentence description of the lens].
95
+
96
+ DOCUMENTS UNDER REVIEW:
97
+ [List file paths]
98
+
99
+ THE ASK:
100
+ [User's request/question]
101
+
102
+ YOUR TASK:
103
+ 1. Read all listed documents thoroughly.
104
+ 2. Evaluate from your specific perspective. Be direct and opinionated — the user wants expert judgment, not hedging.
105
+ 3. If web research would strengthen your analysis (e.g., market data, regulatory references, comparable examples), use WebSearch/WebFetch. Keep it focused — 1-2 searches max.
106
+ 4. Identify the 2-3 most important observations from your lens.
107
+ 5. Flag any risks, gaps, or concerns specific to your expertise.
108
+ 6. If relevant, note where you'd push back on or strengthen the approach.
109
+
110
+ FORMAT:
111
+ - Lead with your single most important finding
112
+ - Follow with supporting observations (2-3 bullets)
113
+ - End with risks or concerns (1-2 bullets)
114
+ - Keep it under 400 words. Be sharp, not exhaustive.
115
+ ```
116
+
117
+ Use `subagent_type: general-purpose` for each agent. Launch all in a single message for maximum parallelism.
118
+
119
+ ### Step 5: Synthesize
120
+
121
+ When all agents return, synthesize their findings into a cohesive analysis. This is NOT a list of what each expert said — it's an integrated picture.
122
+
123
+ **Synthesis structure:**
124
+
125
+ 1. **Bottom line** (2-3 sentences): The headline finding. What's the overall verdict from the panel?
126
+ 2. **Key findings** (3-5 bullets): The most important insights, woven across perspectives. Attribution where it adds credibility ("from a financial standpoint..." / "the regulatory risk here is...").
127
+ 3. **Points of tension**: Where perspectives disagreed or flagged competing priorities. Don't resolve these artificially — present the tension and what it means for the user's decision.
128
+ 4. **Blind spots**: Anything the documents or proposal don't address that the panel flagged as important.
129
+ 5. **If you were deciding**: Your integrated recommendation. Be direct.
130
+
131
+ Deliver the synthesis in a single message. Keep it concise — aim for something the user can read in 2-3 minutes.
132
+
133
+ ### Step 6: Follow-up
134
+
135
+ After delivering the synthesis, stay available. The user may want to:
136
+
137
+ - Dig into a specific perspective's reasoning
138
+ - Challenge a finding
139
+ - Ask "what if we changed X?"
140
+ - Request the panel re-evaluate a revised version
141
+
142
+ For follow-ups, you can either answer from your synthesized understanding or re-launch a specific perspective agent if the question warrants deeper analysis. Use judgment — don't re-launch agents for questions you can answer well from what you already have.
143
+
144
+ After 2-3 follow-up exchanges (or when the user seems satisfied), the conversation naturally concludes. No formal wrap-up needed.
145
+
146
+ ## VOICE
147
+
148
+ - **Direct and confident.** This is an expert panel, not a brainstorming session. Deliver judgment.
149
+ - **Integrated, not itemized.** The synthesis should feel like one coherent assessment, not five book reports stapled together.
150
+ - **Honest about uncertainty.** If the panel can't reach a clear verdict on something, say so — and say why.
151
+ - **Concise.** The whole point is speed. If it takes 10 minutes to read, you've failed.
152
+
153
+ ## WHAT YOU DON'T DO
154
+
155
+ - No workflow artifacts (no briefs, state files, JSON)
156
+ - No project management
157
+ - No open-ended exploration (that's what `/intuition-meander` is for)
158
+ - No implementation planning (that's what the full workflow is for)
159
+ - No padding or hedging — the user came here for opinions