@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 +440 -399
- package/docs/PROJECT_CONTEXT.md +361 -0
- package/package.json +36 -37
- package/scripts/install-skills.js +153 -140
- package/scripts/uninstall-skills.js +83 -82
- package/skills/intuition-discovery/SKILL.md +151 -131
- package/skills/intuition-discovery/references/waldo_core.md +412 -338
- package/skills/intuition-execute/references/faraday_core.md +365 -323
- package/skills/intuition-handoff/SKILL.md +156 -0
- package/skills/intuition-handoff/references/handoff_core.md +539 -0
- package/skills/intuition-initialize/SKILL.md +77 -19
- package/skills/intuition-initialize/references/discovery_output_template.json +19 -0
- package/skills/intuition-initialize/references/execution_brief_template.md +153 -0
- package/skills/intuition-initialize/references/planning_brief_template.md +99 -0
- package/skills/intuition-initialize/references/state_template.json +12 -0
- package/skills/intuition-start/SKILL.md +306 -188
- package/skills/intuition-start/references/start_core.md +564 -0
- package/agents/architect.md +0 -426
- package/agents/code-reviewer.md +0 -186
- package/agents/code-writer.md +0 -140
- package/agents/communications-specialist.md +0 -339
- package/agents/documentation.md +0 -164
- package/agents/research.md +0 -179
- package/agents/security-expert.md +0 -238
- package/agents/technical-spec-writer.md +0 -200
- package/agents/test-runner.md +0 -168
- package/agents/waldo.md +0 -504
package/README.md
CHANGED
|
@@ -1,399 +1,440 @@
|
|
|
1
|
-
# Intuition
|
|
2
|
-
|
|
3
|
-
A
|
|
4
|
-
|
|
5
|
-
**The
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
/intuition-
|
|
23
|
-
/intuition-
|
|
24
|
-
/intuition-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
##
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
##
|
|
182
|
-
[
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
-
|
|
232
|
-
-
|
|
233
|
-
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
**
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
-
|
|
340
|
-
-
|
|
341
|
-
-
|
|
342
|
-
-
|
|
343
|
-
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
-
|
|
385
|
-
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
-
|
|
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
|