@tgoodington/intuition 2.2.0 → 3.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.
package/README.md CHANGED
@@ -1,399 +1,440 @@
1
- # Intuition
2
-
3
- A three-agent system for software project planning and execution. Intuition splits complex work into focused phases with clean context boundaries, dramatically improving success rates.
4
-
5
- **The Three Agents:**
6
- - **Waldo** (`/intuition-discovery`) - Explores problems through GAPP discovery and Socratic dialogue
7
- - **Magellan** (`/intuition-plan`) - Synthesizes discovery into structured, executable plans
8
- - **Faraday** (`/intuition-execute`) - Orchestrates implementation with methodical precision
9
-
10
- **Supporting Skills:**
11
- - `/intuition-start` - Load project context and workflow status
12
- - `/intuition-initialize` - Setup project memory system
13
-
14
- ## Quick Start
15
-
16
- ```bash
17
- # Install globally
18
- npm install -g @tgoodington/intuition
19
-
20
- # In Claude Code, typical workflow:
21
- /intuition-start # Load context and check workflow status
22
- /intuition-discovery # Waldo guides you through GAPP discovery
23
- /intuition-plan # Magellan creates a structured plan
24
- /intuition-execute # Faraday orchestrates implementation
25
- ```
26
-
27
- ## Why Three Agents?
28
-
29
- Each agent has a focused responsibility:
30
-
31
- | Agent | Skill | Phase | Input | Output | Focus |
32
- |-------|-------|-------|-------|--------|-------|
33
- | **Waldo** | `/intuition-discovery` | Discovery | Problem description | `discovery_brief.md` | Understanding & dialogue |
34
- | **Magellan** | `/intuition-plan` | Planning | `discovery_brief.md` | `plan.md` | Strategy & synthesis |
35
- | **Faraday** | `/intuition-execute` | Execution | `plan.md` | Code + memory updates | Implementation & verification |
36
-
37
- By splitting into three phases:
38
- - **Clean context** - Each agent starts fresh, focused on one job
39
- - **Reusable outputs** - Discovery briefs and plans are stored in project memory
40
- - **Higher success rate** - Less context bloat = fewer dropped threads
41
- - **Resume support** - Interrupted work picks up from last checkpoint
42
-
43
- ## The Three-Phase Workflow
44
-
45
- ### Phase 1: Discovery with Waldo
46
-
47
- Explore your problem deeply using the GAPP framework:
48
-
49
- ```
50
- /intuition-discovery
51
- ```
52
-
53
- Waldo guides you through:
54
- - **Problem** - What's the core challenge?
55
- - **Goals** - What does success look like?
56
- - **UX Context** - Who will use this and how?
57
- - **Personalization** - What drives this work for you?
58
-
59
- **Output:** `docs/project_notes/discovery_brief.md`
60
-
61
- Uses Socratic questioning and systems thinking to surface authentic intentions before planning begins.
62
-
63
- ### Phase 2: Planning with Magellan
64
-
65
- Create a structured plan from discovery:
66
-
67
- ```
68
- /intuition-plan
69
- ```
70
-
71
- Magellan:
72
- 1. Reads your discovery brief
73
- 2. Researches your codebase (parallel agents)
74
- 3. Synthesizes insights into a strategic plan
75
- 4. Auto-detects planning depth (simple vs. complex)
76
- 5. Presents plan for your approval
77
-
78
- **Output:** `docs/project_notes/plan.md`
79
-
80
- Includes tasks with acceptance criteria, dependencies, risks, and execution notes.
81
-
82
- ### Phase 3: Execution with Faraday
83
-
84
- Execute the approved plan:
85
-
86
- ```
87
- /intuition-execute
88
- ```
89
-
90
- Faraday:
91
- 1. Reads plan and discovery context
92
- 2. Confirms approach with you
93
- 3. Delegates to specialized sub-agents (parallel when possible)
94
- 4. Verifies outputs against acceptance criteria
95
- 5. Updates project memory
96
- 6. Reports completion
97
-
98
- **Output:** Implemented code + updated project memory
99
-
100
- ## Project Memory System
101
-
102
- Intuition maintains persistent project knowledge:
103
-
104
- ```
105
- docs/project_notes/
106
- ├── .project-memory-state.json (workflow status & resume data)
107
- ├── discovery_brief.md (from Waldo)
108
- ├── plan.md (from Magellan)
109
- ├── bugs.md (known issues & solutions)
110
- ├── decisions.md (architectural decisions)
111
- ├── key_facts.md (project configuration)
112
- └── issues.md (work log)
113
- ```
114
-
115
- All three agents reference and update project memory for consistency.
116
-
117
- ## Workflow Status
118
-
119
- Check where you are in the workflow:
120
-
121
- ```
122
- /intuition-start
123
- ```
124
-
125
- Returns current status:
126
- - **Discovery:** In progress / Complete
127
- - **Planning:** In progress / Complete / Approved
128
- - **Execution:** In progress / Complete
129
-
130
- Also provides helpful next-step suggestions.
131
-
132
- ## File Outputs
133
-
134
- ### discovery_brief.md (From Waldo)
135
-
136
- ```markdown
137
- # Discovery Brief
138
-
139
- ## Problem
140
- [Core challenge and context]
141
-
142
- ## Goals
143
- [Success criteria]
144
-
145
- ## User Context
146
- [Personas and workflows]
147
-
148
- ## Personalization / Motivation
149
- [What drives this work]
150
-
151
- ## Scope
152
- [In scope / out of scope]
153
-
154
- ## Assumptions
155
- [With confidence levels]
156
- ```
157
-
158
- ### plan.md (From Magellan)
159
-
160
- ```markdown
161
- # Plan: [Title]
162
-
163
- ## Objective
164
- [What will be accomplished]
165
-
166
- ## Discovery Summary
167
- [Key insights from Waldo]
168
-
169
- ## Research Context
170
- [Codebase findings]
171
-
172
- ## Approach
173
- [Strategy and rationale]
174
-
175
- ## Tasks
176
- [With acceptance criteria, dependencies]
177
-
178
- ## Risks & Mitigations
179
- [Identified risks]
180
-
181
- ## Execution Notes for Faraday
182
- [Guidance for execution]
183
- ```
184
-
185
- ## Resume Support
186
-
187
- All three agents can resume interrupted work:
188
-
189
- - **Waldo** resumes from the last GAPP phase
190
- - **Magellan** resumes from research or draft state
191
- - **Faraday** resumes from the last completed task
192
-
193
- Just run the skill again and it will pick up from the checkpoint.
194
-
195
- ## Discovery Revision
196
-
197
- If you need to revise your discovery:
198
-
199
- 1. Run `/intuition-discovery` again
200
- 2. Waldo updates `discovery_brief.md`
201
- 3. Magellan detects the change and offers to re-plan
202
- 4. New plan created with updated context
203
-
204
- ## Installation
205
-
206
- ### Install Globally (Recommended)
207
-
208
- ```bash
209
- npm install -g @tgoodington/intuition
210
- ```
211
-
212
- This installs five skills globally to `~/.claude/skills/`:
213
- - `/intuition-start` - Load project context
214
- - `/intuition-initialize` - Setup project memory
215
- - `/intuition-discovery` - Waldo's discovery
216
- - `/intuition-plan` - Magellan's planning
217
- - `/intuition-execute` - Faraday's execution
218
-
219
- ### Install from Source (Development)
220
-
221
- ```bash
222
- cd intuition
223
- npm install -g .
224
- ```
225
-
226
- ### Verify Installation
227
-
228
- In Claude Code, type `/` to see available skills. You should see all five:
229
- - `/intuition-start`
230
- - `/intuition-initialize`
231
- - `/intuition-discovery`
232
- - `/intuition-plan`
233
- - `/intuition-execute`
234
-
235
- ## Skills Reference
236
-
237
- ### `/intuition-start`
238
-
239
- Load project context and check workflow status.
240
-
241
- ```
242
- /intuition-start
243
- ```
244
-
245
- **Does:**
246
- - Loads project memory files
247
- - Checks workflow status
248
- - Suggests next steps based on status
249
- - Enforces project protocols
250
-
251
- **When to use:** Start of every session
252
-
253
- ### `/intuition-initialize`
254
-
255
- Setup project memory system.
256
-
257
- ```
258
- /intuition-initialize
259
- ```
260
-
261
- **Creates:**
262
- - `docs/project_notes/` directory
263
- - `bugs.md` - Bug tracking
264
- - `decisions.md` - Architecture decisions
265
- - `key_facts.md` - Project configuration
266
- - `issues.md` - Work log
267
- - `.project-memory-state.json` - Workflow tracking
268
-
269
- **When to use:** Once per project, at the start
270
-
271
- ### `/intuition-discovery`
272
-
273
- Explore your problem with Waldo.
274
-
275
- ```
276
- /intuition-discovery
277
- ```
278
-
279
- **Waldo does:**
280
- - GAPP discovery (Problem → Goals → UX Context → Personalization)
281
- - Socratic questioning
282
- - Systems thinking perspective
283
- - Clarifying questions to validate understanding
284
- - Saves `discovery_brief.md`
285
-
286
- **When to use:** Start of new work
287
-
288
- ### `/intuition-plan`
289
-
290
- Create a plan with Magellan.
291
-
292
- ```
293
- /intuition-plan
294
- ```
295
-
296
- **Magellan does:**
297
- - Reads your discovery brief
298
- - Researches codebase (parallel agents)
299
- - Synthesizes into strategic plan
300
- - Auto-detects planning depth
301
- - Saves `plan.md`
302
-
303
- **When to use:** After discovery is complete
304
-
305
- ### `/intuition-execute`
306
-
307
- Execute the plan with Faraday.
308
-
309
- ```
310
- /intuition-execute
311
- ```
312
-
313
- **Faraday does:**
314
- - Reads plan and discovery context
315
- - Confirms approach with you
316
- - Delegates to sub-agents (parallel when possible)
317
- - Verifies outputs
318
- - Updates project memory
319
-
320
- **When to use:** After plan is approved
321
-
322
- ## Sub-Agents
323
-
324
- Faraday coordinates these specialized agents:
325
-
326
- | Agent | Purpose |
327
- |-------|---------|
328
- | Code Writer | Implementation |
329
- | Test Runner | Testing & verification |
330
- | Code Reviewer | Quality review |
331
- | Documentation | Updates docs |
332
- | Research | Codebase exploration |
333
- | Security Expert | Vulnerability scanning |
334
- | Technical Spec Writer | Specification creation |
335
- | Communications Specialist | User-facing documentation |
336
-
337
- ## Documentation
338
-
339
- - **Workflow Guide:** `docs/intuition-workflow.md`
340
- - **Architecture:** `docs/intuition-architecture.md`
341
- - **Waldo Reference:** `skills/intuition-discovery/references/waldo_core.md`
342
- - **Magellan Reference:** `skills/intuition-plan/references/magellan_core.md`
343
- - **Faraday Reference:** `skills/intuition-execute/references/faraday_core.md`
344
-
345
- ## Requirements
346
-
347
- - Node.js 14.0.0 or higher
348
- - Claude Code or similar agent system
349
-
350
- ## Project Structure
351
-
352
- ```
353
- intuition/
354
- ├── skills/
355
- │ ├── intuition-start/ # Context loading & workflow status
356
- │ ├── intuition-initialize/ # Project memory setup
357
- │ ├── intuition-discovery/ # Waldo - discovery & GAPP
358
- │ ├── intuition-plan/ # Magellan - strategic planning
359
- │ └── intuition-execute/ # Faraday - orchestrated execution
360
- ├── agents/ # Agent definitions
361
- ├── docs/ # Documentation
362
- │ ├── intuition-workflow.md # User guide
363
- │ └── intuition-architecture.md # Technical details
364
- ├── scripts/ # Installation scripts
365
- ├── package.json # npm package config
366
- └── README.md # This file
367
- ```
368
-
369
- ## Contributing
370
-
371
- Contributions welcome! Areas for enhancement:
372
- - Additional specialized sub-agents
373
- - Workflow improvements
374
- - Documentation enhancements
375
- - Framework extensions
376
-
377
- ## License
378
-
379
- MIT
380
-
381
- ## Support
382
-
383
- For issues or questions:
384
- - Check `docs/intuition-workflow.md` for user guide
385
- - Check `docs/intuition-architecture.md` for technical details
386
- - Review skill documentation in `skills/*/SKILL.md`
387
- - Check project memory in `docs/project_notes/` for decisions and issues
388
-
389
- ## Version History
390
-
391
- ### 2.0.0+
392
- - Complete refactor into three-agent system (Waldo → Magellan → Faraday)
393
- - GAPP framework for discovery
394
- - File-based handoffs through project memory
395
- - Enhanced state management
396
- - Resume support for all phases
397
-
398
- ### 1.x
399
- - Original monolithic planning system
1
+ # Intuition v2
2
+
3
+ A five-skill orchestration system for software development. Intuition coordinates discovery, planning, and execution through a symphony of specialized agents, with explicit handoff phases maintaining clean context and memory consistency.
4
+
5
+ **The Five Skills:**
6
+ 1. **`/intuition-start`** - Session primer (load context, detect phase, suggest next step)
7
+ 2. **`/intuition-discovery`** - Waldo (explore problems through GAPP and Socratic dialogue)
8
+ 3. **`/intuition-handoff`** - Orchestrator (extract insights, update memory, brief next agent)
9
+ 4. **`/intuition-plan`** - Magellan (synthesize discovery into structured executable plans)
10
+ 5. **`/intuition-execute`** - Faraday (orchestrate implementation with methodical precision)
11
+
12
+ **Also includes:**
13
+ - `/intuition-initialize` - Setup project memory system
14
+
15
+ ## Quick Start
16
+
17
+ ```bash
18
+ # Install globally
19
+ npm install -g intuition
20
+
21
+ # In Claude Code, typical workflow:
22
+ /intuition-start # Load context and check workflow status
23
+ /intuition-discovery # Waldo guides discovery (GAPP dialogue)
24
+ /intuition-handoff # Extract insights, brief planner
25
+ /intuition-plan # Magellan creates structured plan
26
+ /intuition-handoff # Prepare execution context
27
+ /intuition-execute # Faraday orchestrates implementation
28
+ ```
29
+
30
+ **Key Point:** Always start with `/intuition-start` — it will tell you which step to take next.
31
+
32
+ ## Why Five Skills?
33
+
34
+ Each skill has a focused responsibility:
35
+
36
+ | Skill | Role | Phase | Input | Output | Focus |
37
+ |-------|------|-------|-------|--------|-------|
38
+ | `/intuition-start` | Primer | Any | State file | Context brief + suggestion | Navigation |
39
+ | `/intuition-discovery` | Waldo | Discovery | Problem description | `discovery_brief.md`, `discovery_output.json` | Understanding & dialogue |
40
+ | `/intuition-handoff` | Orchestrator | Transition | Phase output | Updated memory + brief | Context bridging |
41
+ | `/intuition-plan` | Magellan | Planning | `planning_brief.md` | `plan.md` | Strategy & synthesis |
42
+ | `/intuition-execute` | Faraday | Execution | `execution_brief.md` | Code + memory | Implementation |
43
+
44
+ By splitting into five phases with explicit handoffs:
45
+ - **Clean context** - Each skill gets exactly what it needs, nothing more
46
+ - **Memory consistency** - Handoff maintains project memory across phases
47
+ - **Higher success rate** - Less context bloat, better focus
48
+ - **Resume support** - Interrupted work picks up from last checkpoint
49
+ - **Transparency** - Every phase produces readable, auditable outputs
50
+
51
+ ## The Five-Phase Workflow
52
+
53
+ ### Phase 1: Discovery with Waldo
54
+
55
+ Explore your problem deeply using the GAPP framework:
56
+
57
+ ```
58
+ /intuition-discovery
59
+ ```
60
+
61
+ Waldo guides you through genuine dialogue covering:
62
+ - **Problem** - What's the core challenge?
63
+ - **Goals** - What does success look like?
64
+ - **UX Context** - Who will use this and how?
65
+ - **Personalization** - What drives this work for you?
66
+
67
+ **Output:** `docs/project_notes/discovery_brief.md` + `discovery_output.json`
68
+
69
+ Uses Socratic questioning and systems thinking to surface authentic intentions.
70
+
71
+ ### Phase 1.5: Discovery → Planning Handoff
72
+
73
+ Process discovery and prepare for planning:
74
+
75
+ ```
76
+ /intuition-handoff
77
+ ```
78
+
79
+ The orchestrator:
80
+ 1. Reads your discovery output
81
+ 2. Extracts key facts, decisions, constraints
82
+ 3. Updates project memory files
83
+ 4. Generates `planning_brief.md` for Magellan
84
+ 5. Updates workflow state
85
+
86
+ **Output:** Updated memory + fresh planning context
87
+
88
+ ### Phase 2: Planning with Magellan
89
+
90
+ Create a structured plan from discovery:
91
+
92
+ ```
93
+ /intuition-plan
94
+ ```
95
+
96
+ Magellan:
97
+ 1. Reads your planning brief and memory
98
+ 2. Researches your codebase
99
+ 3. Synthesizes insights into a strategic plan
100
+ 4. Detects planning depth (simple vs. complex)
101
+ 5. Presents plan for your approval
102
+
103
+ **Output:** `docs/project_notes/plan.md`
104
+
105
+ Includes tasks with acceptance criteria, dependencies, risks, and execution notes.
106
+
107
+ ### Phase 2.5: Planning → Execution Handoff
108
+
109
+ Process plan and prepare for execution:
110
+
111
+ ```
112
+ /intuition-handoff
113
+ ```
114
+
115
+ The orchestrator:
116
+ 1. Reads your plan
117
+ 2. Extracts task structure and risks
118
+ 3. Updates project memory with planning outcomes
119
+ 4. Generates `execution_brief.md` for Faraday
120
+ 5. Updates workflow state
121
+
122
+ **Output:** Updated memory + fresh execution context
123
+
124
+ ### Phase 3: Execution with Faraday
125
+
126
+ Execute the approved plan:
127
+
128
+ ```
129
+ /intuition-execute
130
+ ```
131
+
132
+ Faraday:
133
+ 1. Reads execution brief and memory
134
+ 2. Confirms approach with you
135
+ 3. Delegates to specialized sub-agents
136
+ 4. Verifies outputs against acceptance criteria
137
+ 5. Updates project memory
138
+ 6. Reports completion
139
+
140
+ **Output:** Implemented code + updated project memory
141
+
142
+ ## Project Memory System
143
+
144
+ Intuition maintains persistent project knowledge:
145
+
146
+ ```
147
+ docs/project_notes/
148
+ ├── .project-memory-state.json (workflow status & resume data)
149
+ ├── discovery_brief.md (from Waldo)
150
+ ├── plan.md (from Magellan)
151
+ ├── bugs.md (known issues & solutions)
152
+ ├── decisions.md (architectural decisions)
153
+ ├── key_facts.md (project configuration)
154
+ └── issues.md (work log)
155
+ ```
156
+
157
+ All three agents reference and update project memory for consistency.
158
+
159
+ ## Workflow Status
160
+
161
+ Check where you are in the workflow:
162
+
163
+ ```
164
+ /intuition-start
165
+ ```
166
+
167
+ Returns current status:
168
+ - **Discovery:** In progress / Complete
169
+ - **Planning:** In progress / Complete / Approved
170
+ - **Execution:** In progress / Complete
171
+
172
+ Also provides helpful next-step suggestions.
173
+
174
+ ## File Outputs
175
+
176
+ ### discovery_brief.md (From Waldo)
177
+
178
+ ```markdown
179
+ # Discovery Brief
180
+
181
+ ## Problem
182
+ [Core challenge and context]
183
+
184
+ ## Goals
185
+ [Success criteria]
186
+
187
+ ## User Context
188
+ [Personas and workflows]
189
+
190
+ ## Personalization / Motivation
191
+ [What drives this work]
192
+
193
+ ## Scope
194
+ [In scope / out of scope]
195
+
196
+ ## Assumptions
197
+ [With confidence levels]
198
+ ```
199
+
200
+ ### plan.md (From Magellan)
201
+
202
+ ```markdown
203
+ # Plan: [Title]
204
+
205
+ ## Objective
206
+ [What will be accomplished]
207
+
208
+ ## Discovery Summary
209
+ [Key insights from Waldo]
210
+
211
+ ## Research Context
212
+ [Codebase findings]
213
+
214
+ ## Approach
215
+ [Strategy and rationale]
216
+
217
+ ## Tasks
218
+ [With acceptance criteria, dependencies]
219
+
220
+ ## Risks & Mitigations
221
+ [Identified risks]
222
+
223
+ ## Execution Notes for Faraday
224
+ [Guidance for execution]
225
+ ```
226
+
227
+ ## Resume Support
228
+
229
+ All three agents can resume interrupted work:
230
+
231
+ - **Waldo** resumes from the last GAPP phase
232
+ - **Magellan** resumes from research or draft state
233
+ - **Faraday** resumes from the last completed task
234
+
235
+ Just run the skill again and it will pick up from the checkpoint.
236
+
237
+ ## Discovery Revision
238
+
239
+ If you need to revise your discovery:
240
+
241
+ 1. Run `/intuition-discovery` again
242
+ 2. Waldo updates `discovery_brief.md`
243
+ 3. Magellan detects the change and offers to re-plan
244
+ 4. New plan created with updated context
245
+
246
+ ## Installation
247
+
248
+ ### Install Globally (Recommended)
249
+
250
+ ```bash
251
+ npm install -g @tgoodington/intuition
252
+ ```
253
+
254
+ This installs five skills globally to `~/.claude/skills/`:
255
+ - `/intuition-start` - Load project context
256
+ - `/intuition-initialize` - Setup project memory
257
+ - `/intuition-discovery` - Waldo's discovery
258
+ - `/intuition-plan` - Magellan's planning
259
+ - `/intuition-execute` - Faraday's execution
260
+
261
+ ### Install from Source (Development)
262
+
263
+ ```bash
264
+ cd intuition
265
+ npm install -g .
266
+ ```
267
+
268
+ ### Verify Installation
269
+
270
+ In Claude Code, type `/` to see available skills. You should see all five:
271
+ - `/intuition-start`
272
+ - `/intuition-initialize`
273
+ - `/intuition-discovery`
274
+ - `/intuition-plan`
275
+ - `/intuition-execute`
276
+
277
+ ## Skills Reference
278
+
279
+ ### `/intuition-start`
280
+
281
+ Load project context and check workflow status.
282
+
283
+ ```
284
+ /intuition-start
285
+ ```
286
+
287
+ **Does:**
288
+ - Loads project memory files
289
+ - Checks workflow status
290
+ - Suggests next steps based on status
291
+ - Enforces project protocols
292
+
293
+ **When to use:** Start of every session
294
+
295
+ ### `/intuition-initialize`
296
+
297
+ Setup project memory system.
298
+
299
+ ```
300
+ /intuition-initialize
301
+ ```
302
+
303
+ **Creates:**
304
+ - `docs/project_notes/` directory
305
+ - `bugs.md` - Bug tracking
306
+ - `decisions.md` - Architecture decisions
307
+ - `key_facts.md` - Project configuration
308
+ - `issues.md` - Work log
309
+ - `.project-memory-state.json` - Workflow tracking
310
+
311
+ **When to use:** Once per project, at the start
312
+
313
+ ### `/intuition-discovery`
314
+
315
+ Explore your problem with Waldo.
316
+
317
+ ```
318
+ /intuition-discovery
319
+ ```
320
+
321
+ **Waldo does:**
322
+ - GAPP discovery (Problem → Goals → UX Context → Personalization)
323
+ - Socratic questioning
324
+ - Systems thinking perspective
325
+ - Clarifying questions to validate understanding
326
+ - Saves `discovery_brief.md`
327
+
328
+ **When to use:** Start of new work
329
+
330
+ ### `/intuition-plan`
331
+
332
+ Create a plan with Magellan.
333
+
334
+ ```
335
+ /intuition-plan
336
+ ```
337
+
338
+ **Magellan does:**
339
+ - Reads your discovery brief
340
+ - Researches codebase (parallel agents)
341
+ - Synthesizes into strategic plan
342
+ - Auto-detects planning depth
343
+ - Saves `plan.md`
344
+
345
+ **When to use:** After discovery is complete
346
+
347
+ ### `/intuition-execute`
348
+
349
+ Execute the plan with Faraday.
350
+
351
+ ```
352
+ /intuition-execute
353
+ ```
354
+
355
+ **Faraday does:**
356
+ - Reads plan and discovery context
357
+ - Confirms approach with you
358
+ - Delegates to sub-agents (parallel when possible)
359
+ - Verifies outputs
360
+ - Updates project memory
361
+
362
+ **When to use:** After plan is approved
363
+
364
+ ## Sub-Agents
365
+
366
+ Faraday coordinates these specialized agents:
367
+
368
+ | Agent | Purpose |
369
+ |-------|---------|
370
+ | Code Writer | Implementation |
371
+ | Test Runner | Testing & verification |
372
+ | Code Reviewer | Quality review |
373
+ | Documentation | Updates docs |
374
+ | Research | Codebase exploration |
375
+ | Security Expert | Vulnerability scanning |
376
+ | Technical Spec Writer | Specification creation |
377
+ | Communications Specialist | User-facing documentation |
378
+
379
+ ## Documentation
380
+
381
+ - **Workflow Guide:** `docs/intuition-workflow.md`
382
+ - **Architecture:** `docs/intuition-architecture.md`
383
+ - **Waldo Reference:** `skills/intuition-discovery/references/waldo_core.md`
384
+ - **Magellan Reference:** `skills/intuition-plan/references/magellan_core.md`
385
+ - **Faraday Reference:** `skills/intuition-execute/references/faraday_core.md`
386
+
387
+ ## Requirements
388
+
389
+ - Node.js 14.0.0 or higher
390
+ - Claude Code or similar agent system
391
+
392
+ ## Project Structure
393
+
394
+ ```
395
+ intuition/
396
+ ├── skills/
397
+ │ ├── intuition-start/ # Context loading & workflow status
398
+ │ ├── intuition-initialize/ # Project memory setup
399
+ │ ├── intuition-discovery/ # Waldo - discovery & GAPP
400
+ │ ├── intuition-plan/ # Magellan - strategic planning
401
+ │ └── intuition-execute/ # Faraday - orchestrated execution
402
+ ├── docs/ # Documentation
403
+ │ ├── intuition-workflow.md # User guide
404
+ │ └── intuition-architecture.md # Technical details
405
+ ├── scripts/ # Installation scripts
406
+ ├── package.json # npm package config
407
+ └── README.md # This file
408
+ ```
409
+
410
+ ## Contributing
411
+
412
+ Contributions welcome! Areas for enhancement:
413
+ - Additional specialized sub-agents
414
+ - Workflow improvements
415
+ - Documentation enhancements
416
+ - Framework extensions
417
+
418
+ ## License
419
+
420
+ MIT
421
+
422
+ ## Support
423
+
424
+ For issues or questions:
425
+ - Check `docs/intuition-workflow.md` for user guide
426
+ - Check `docs/intuition-architecture.md` for technical details
427
+ - Review skill documentation in `skills/*/SKILL.md`
428
+ - Check project memory in `docs/project_notes/` for decisions and issues
429
+
430
+ ## Version History
431
+
432
+ ### 2.0.0+
433
+ - Complete refactor into three-agent system (Waldo → Magellan → Faraday)
434
+ - GAPP framework for discovery
435
+ - File-based handoffs through project memory
436
+ - Enhanced state management
437
+ - Resume support for all phases
438
+
439
+ ### 1.x
440
+ - Original monolithic planning system