@tgoodington/intuition 9.2.0 → 9.2.1

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.
Files changed (67) hide show
  1. package/README.md +9 -9
  2. package/docs/project_notes/.project-memory-state.json +100 -0
  3. package/docs/project_notes/branches/.gitkeep +0 -0
  4. package/docs/project_notes/bugs.md +41 -0
  5. package/docs/project_notes/decisions.md +147 -0
  6. package/docs/project_notes/issues.md +101 -0
  7. package/docs/project_notes/key_facts.md +88 -0
  8. package/docs/project_notes/trunk/.gitkeep +0 -0
  9. package/docs/project_notes/trunk/.planning_research/decision_file_naming.md +15 -0
  10. package/docs/project_notes/trunk/.planning_research/decisions_log.md +32 -0
  11. package/docs/project_notes/trunk/.planning_research/orientation.md +51 -0
  12. package/docs/project_notes/trunk/audit/plan-rename-hitlist.md +654 -0
  13. package/docs/project_notes/trunk/blueprint-conflicts.md +109 -0
  14. package/docs/project_notes/trunk/blueprints/database-architect.md +416 -0
  15. package/docs/project_notes/trunk/blueprints/devops-infrastructure.md +514 -0
  16. package/docs/project_notes/trunk/blueprints/technical-writer.md +788 -0
  17. package/docs/project_notes/trunk/build_brief.md +119 -0
  18. package/docs/project_notes/trunk/build_report.md +250 -0
  19. package/docs/project_notes/trunk/detail_brief.md +94 -0
  20. package/docs/project_notes/trunk/plan.md +182 -0
  21. package/docs/project_notes/trunk/planning_brief.md +96 -0
  22. package/docs/project_notes/trunk/prompt_brief.md +60 -0
  23. package/docs/project_notes/trunk/prompt_output.json +98 -0
  24. package/docs/project_notes/trunk/scratch/database-architect-decisions.json +72 -0
  25. package/docs/project_notes/trunk/scratch/database-architect-research-plan.md +10 -0
  26. package/docs/project_notes/trunk/scratch/database-architect-stage1.md +226 -0
  27. package/docs/project_notes/trunk/scratch/devops-infrastructure-decisions.json +71 -0
  28. package/docs/project_notes/trunk/scratch/devops-infrastructure-research-plan.md +7 -0
  29. package/docs/project_notes/trunk/scratch/devops-infrastructure-stage1.md +164 -0
  30. package/docs/project_notes/trunk/scratch/technical-writer-decisions.json +88 -0
  31. package/docs/project_notes/trunk/scratch/technical-writer-research-plan.md +7 -0
  32. package/docs/project_notes/trunk/scratch/technical-writer-stage1.md +266 -0
  33. package/docs/project_notes/trunk/team_assignment.json +108 -0
  34. package/docs/project_notes/trunk/test_brief.md +75 -0
  35. package/docs/project_notes/trunk/test_report.md +26 -0
  36. package/docs/project_notes/trunk/verification/devops-infrastructure-verification.md +172 -0
  37. package/docs/v9/decision-framework-direction.md +8 -8
  38. package/docs/v9/decision-framework-implementation.md +8 -8
  39. package/docs/v9/domain-adaptive-team-architecture.md +22 -22
  40. package/package.json +2 -2
  41. package/scripts/install-skills.js +9 -2
  42. package/scripts/uninstall-skills.js +4 -2
  43. package/skills/intuition-agent-advisor/SKILL.md +327 -327
  44. package/skills/intuition-assemble/SKILL.md +261 -261
  45. package/skills/intuition-build/SKILL.md +379 -379
  46. package/skills/intuition-debugger/SKILL.md +390 -390
  47. package/skills/intuition-design/SKILL.md +385 -385
  48. package/skills/intuition-detail/SKILL.md +377 -377
  49. package/skills/intuition-engineer/SKILL.md +307 -307
  50. package/skills/intuition-handoff/SKILL.md +51 -47
  51. package/skills/intuition-handoff/references/handoff_core.md +38 -38
  52. package/skills/intuition-initialize/SKILL.md +2 -2
  53. package/skills/intuition-initialize/references/agents_template.md +118 -118
  54. package/skills/intuition-initialize/references/claude_template.md +134 -134
  55. package/skills/intuition-initialize/references/intuition_readme_template.md +4 -4
  56. package/skills/intuition-initialize/references/state_template.json +2 -2
  57. package/skills/{intuition-plan → intuition-outline}/SKILL.md +561 -561
  58. package/skills/{intuition-plan → intuition-outline}/references/magellan_core.md +9 -9
  59. package/skills/{intuition-plan → intuition-outline}/references/templates/plan_template.md +1 -1
  60. package/skills/intuition-prompt/SKILL.md +374 -374
  61. package/skills/intuition-start/SKILL.md +8 -8
  62. package/skills/intuition-start/references/start_core.md +50 -50
  63. package/skills/intuition-test/SKILL.md +345 -345
  64. /package/skills/{intuition-plan → intuition-outline}/references/sub_agents.md +0 -0
  65. /package/skills/{intuition-plan → intuition-outline}/references/templates/confidence_scoring.md +0 -0
  66. /package/skills/{intuition-plan → intuition-outline}/references/templates/plan_format.md +0 -0
  67. /package/skills/{intuition-plan → intuition-outline}/references/templates/planning_process.md +0 -0
@@ -102,13 +102,13 @@ ELSE (a context is in-progress):
102
102
  IF workflow.prompt.started == false OR workflow.prompt.completed == false:
103
103
  → prompt_in_progress
104
104
 
105
- ELSE IF workflow.planning.started == false:
106
- ready_for_planning
105
+ ELSE IF workflow.outline.started == false:
106
+ ready_for_outline
107
107
 
108
- ELSE IF workflow.planning.completed == false:
108
+ ELSE IF workflow.outline.completed == false:
109
109
  → planning_in_progress
110
110
 
111
- ELSE IF status == "planning" AND workflow.planning.completed == true
111
+ ELSE IF status == "outline" AND workflow.outline.completed == true
112
112
  AND workflow.detail exists:
113
113
  IF workflow.detail.started == false:
114
114
  → ready_for_assemble
@@ -146,9 +146,9 @@ ELSE (a context is in-progress):
146
146
  ```
147
147
 
148
148
  **"Any context is complete"** = trunk.status == "complete" OR any branch has status == "complete".
149
- **"No context is in-progress"** = no context has status in ["prompt","planning","design","engineering","building","testing","detail"].
149
+ **"No context is in-progress"** = no context has status in ["prompt","outline","design","engineering","building","testing","detail"].
150
150
 
151
- **Fallback** (state corrupted): Infer from files under context_path — prompt_brief.md (prompt done), plan.md (planning done), team_assignment.json (assemble done), blueprints/ directory (detail in progress), code_specs.md (engineering done), build_report.md (build done), test_report.md (test done). Ask user if ambiguous.
151
+ **Fallback** (state corrupted): Infer from files under context_path — prompt_brief.md (prompt done), outline.md (planning done), team_assignment.json (assemble done), blueprints/ directory (detail in progress), code_specs.md (engineering done), build_report.md (build done), test_report.md (test done). Ask user if ambiguous.
152
152
 
153
153
  ## ROUTING TABLE (Step 5)
154
154
 
@@ -158,8 +158,8 @@ Output one line of status, then the next command.
158
158
  |-------|-------------|-------|
159
159
  | first_time | "No project memory found." | `/intuition-prompt` |
160
160
  | prompt_in_progress | "Prompt refinement in progress." | `/intuition-prompt` |
161
- | ready_for_planning | "Prompt complete." | `/intuition-handoff` |
162
- | planning_in_progress | "Planning in progress." | `/intuition-plan` |
161
+ | ready_for_outline | "Prompt complete." | `/intuition-handoff` |
162
+ | planning_in_progress | "Planning in progress." | `/intuition-outline` |
163
163
  | ready_for_assemble | "Planning complete (v9)." | `/intuition-handoff` |
164
164
  | detail_in_progress | "Detail phase in progress." | See DETAIL ROUTING below |
165
165
  | design_in_progress | "Design exploration in progress." | See DESIGN ROUTING below |
@@ -31,12 +31,12 @@ Your first job is detecting which phase is active. Check `.project-memory-state.
31
31
  ```json
32
32
  {
33
33
  "workflow": {
34
- "status": "discovery" | "planning" | "executing" | "complete",
34
+ "status": "discovery" | "outline" | "executing" | "complete",
35
35
  "discovery": {
36
36
  "started": boolean,
37
37
  "completed": boolean
38
38
  },
39
- "planning": {
39
+ "outline": {
40
40
  "started": boolean,
41
41
  "completed": boolean,
42
42
  "approved": boolean
@@ -60,17 +60,17 @@ ELSE IF discovery.completed == false:
60
60
  → PHASE: "discovery_in_progress"
61
61
  → BRIEF: Resume discovery context
62
62
 
63
- ELSE IF planning.started == false:
64
- → PHASE: "discovery_complete_ready_for_planning"
65
- → BRIEF: Load planning_brief.md, summarize discovery
63
+ ELSE IF outline.started == false:
64
+ → PHASE: "discovery_complete_ready_for_outline"
65
+ → BRIEF: Load outline_brief.md, summarize discovery
66
66
 
67
- ELSE IF planning.completed == false:
68
- → PHASE: "planning_in_progress"
69
- → BRIEF: Resume planning context
67
+ ELSE IF outline.completed == false:
68
+ → PHASE: "outline_in_progress"
69
+ → BRIEF: Resume outline context
70
70
 
71
71
  ELSE IF execution.started == false:
72
- → PHASE: "planning_complete_ready_for_execution"
73
- → BRIEF: Load execution_brief.md, summarize plan
72
+ → PHASE: "outline_complete_ready_for_execution"
73
+ → BRIEF: Load execution_brief.md, summarize outline
74
74
 
75
75
  ELSE IF execution.completed == false:
76
76
  → PHASE: "execution_in_progress"
@@ -151,19 +151,19 @@ Run /intuition-discovery to continue exploring what you're building.
151
151
 
152
152
  ---
153
153
 
154
- ## Phase 3: Discovery Complete, Ready for Planning
154
+ ## Phase 3: Discovery Complete, Ready for Outline
155
155
 
156
156
  ### Detection
157
157
  - `discovery.completed == true`
158
- - `planning.started == false`
158
+ - `outline.started == false`
159
159
  - `docs/project_notes/prompt_brief.md` exists
160
- - `docs/project_notes/planning_brief.md` exists (created by handoff)
160
+ - `docs/project_notes/outline_brief.md` exists (created by handoff)
161
161
 
162
162
  ### Action
163
- 1. Read `prompt_brief.md` and `planning_brief.md`
163
+ 1. Read `prompt_brief.md` and `outline_brief.md`
164
164
  2. Extract and summarize key information
165
165
  3. Load relevant architectural decisions from `decisions.md`
166
- 4. Generate a fresh planning brief (or note the existing one)
166
+ 4. Generate a fresh outline brief (or note the existing one)
167
167
  5. Tell user it's time to plan
168
168
 
169
169
  ### Data to Extract
@@ -176,7 +176,7 @@ Context: [extract key user/stakeholder info from "## Context"]
176
176
  Constraints: [extract from "## Constraints" section]
177
177
  ```
178
178
 
179
- **From planning_brief.md:**
179
+ **From outline_brief.md:**
180
180
  ```
181
181
  [Already generated by handoff, just reference it]
182
182
  ```
@@ -205,11 +205,11 @@ Relevant Architectural Decisions:
205
205
  - ADR-001: [Title] ([date])
206
206
  - ADR-002: [Title] ([date])
207
207
 
208
- To create a plan, run:
209
- /intuition-plan
208
+ To create an outline, run:
209
+ /intuition-outline
210
210
 
211
- I've prepared your planning brief at:
212
- docs/project_notes/planning_brief.md
211
+ I've prepared your outline brief at:
212
+ docs/project_notes/outline_brief.md
213
213
  ```
214
214
 
215
215
  ### Summary Format
@@ -245,52 +245,52 @@ Relevant Decisions:
245
245
 
246
246
  ---
247
247
 
248
- ## Phase 4: Planning In Progress
248
+ ## Phase 4: Outline In Progress
249
249
 
250
250
  ### Detection
251
- - `planning.started == true`
252
- - `planning.completed == false`
253
- - `docs/project_notes/plan.md` exists (created by Magellan)
251
+ - `outline.started == true`
252
+ - `outline.completed == false`
253
+ - `docs/project_notes/outline.md` exists (created by Magellan)
254
254
 
255
255
  ### Action
256
- 1. Load `plan.md`
256
+ 1. Load `outline.md`
257
257
  2. Extract task count and scope
258
- 3. Note that planning is underway
258
+ 3. Note that outline is underway
259
259
  4. Suggest continuing
260
260
 
261
261
  ### Output
262
262
 
263
263
  ```
264
- Welcome back! I see you're in the planning phase.
264
+ Welcome back! I see you're in the outline phase.
265
265
 
266
266
  Discovery: ✓ Complete (docs/project_notes/prompt_brief.md)
267
- Plan In Progress: 🔄 (docs/project_notes/plan.md)
267
+ Outline In Progress: 🔄 (docs/project_notes/outline.md)
268
268
  - [X] tasks identified
269
269
  - Scope: [Simple/Moderate/Complex]
270
270
 
271
- Run /intuition-plan to continue developing the plan.
271
+ Run /intuition-outline to continue developing the outline.
272
272
  ```
273
273
 
274
274
  ---
275
275
 
276
- ## Phase 5: Planning Complete, Ready for Execution
276
+ ## Phase 5: Outline Complete, Ready for Execution
277
277
 
278
278
  ### Detection
279
- - `planning.completed == true`
280
- - `planning.approved == true`
279
+ - `outline.completed == true`
280
+ - `outline.approved == true`
281
281
  - `execution.started == false`
282
- - `docs/project_notes/plan.md` exists
282
+ - `docs/project_notes/outline.md` exists
283
283
  - `docs/project_notes/execution_brief.md` exists (created by handoff)
284
284
 
285
285
  ### Action
286
- 1. Read `plan.md` and `execution_brief.md`
286
+ 1. Read `outline.md` and `execution_brief.md`
287
287
  2. Extract task summary and scope
288
288
  3. Load relevant architectural decisions and risks
289
289
  4. Tell user plan is ready for execution
290
290
 
291
291
  ### Data to Extract
292
292
 
293
- **From plan.md:**
293
+ **From outline.md:**
294
294
  ```
295
295
  Objective: [extract from "## Objective"]
296
296
  Task count: [count items in "## Tasks"]
@@ -314,7 +314,7 @@ Load all decisions for context
314
314
  Welcome back! Your plan is ready to execute.
315
315
 
316
316
  Discovery: ✓ Complete
317
- Plan: ✓ Approved
317
+ Outline: ✓ Approved
318
318
  - [X] Tasks in [N] phases
319
319
  - Approach: [one-line summary]
320
320
  - Estimated scope: [Simple/Moderate/Complex]
@@ -343,7 +343,7 @@ Example:
343
343
  Welcome back! Your plan is ready to execute.
344
344
 
345
345
  Discovery: ✓ Complete
346
- Plan: ✓ Approved
346
+ Outline: ✓ Approved
347
347
  - 8 tasks in 3 phases
348
348
  - Approach: Implement authentication layer first, then API endpoints
349
349
  - Scope: Moderate
@@ -369,7 +369,7 @@ docs/project_notes/execution_brief.md
369
369
  - Tasks are being tracked in state
370
370
 
371
371
  ### Action
372
- 1. Load plan.md and current execution state
372
+ 1. Load outline.md and current execution state
373
373
  2. Summarize which tasks are done
374
374
  3. Suggest continuing execution
375
375
 
@@ -379,7 +379,7 @@ docs/project_notes/execution_brief.md
379
379
  Welcome back! Execution is in progress.
380
380
 
381
381
  Discovery: ✓ Complete
382
- Plan: ✓ Approved
382
+ Outline: ✓ Approved
383
383
  Execution: 🔄 In progress
384
384
  - [N] tasks completed
385
385
  - [M] tasks remaining
@@ -405,7 +405,7 @@ Run /intuition-execute to continue.
405
405
  Welcome back! You've completed this workflow.
406
406
 
407
407
  ✓ Discovery: Complete
408
- Plan: Complete
408
+ Outline: Complete
409
409
  ✓ Execution: Complete
410
410
 
411
411
  Ready for the next phase? Run:
@@ -447,7 +447,7 @@ Extract from these sections:
447
447
  Summarize in 1-2 sentences each for output.
448
448
  ```
449
449
 
450
- ### Read planning_brief.md
450
+ ### Read outline_brief.md
451
451
  ```
452
452
  If exists, reference it but don't read in detail.
453
453
  User or Magellan will read full version if needed.
@@ -459,7 +459,7 @@ User or Magellan will read full version if needed.
459
459
 
460
460
  You're reading these briefs to **curate** for the user, not to dump all information. Follow these rules:
461
461
 
462
- ### For Planning Brief (after discovery)
462
+ ### For Outline Brief (after discovery)
463
463
  - ✓ Problem statement (1-2 sentences)
464
464
  - ✓ Key goals (2-3 bullets, most important first)
465
465
  - ✓ Main constraints (3-5 bullets, limiting constraints first)
@@ -469,7 +469,7 @@ You're reading these briefs to **curate** for the user, not to dump all informat
469
469
  - ❌ Don't include all context details
470
470
  - ❌ Don't second-guess the discovery
471
471
 
472
- ### For Execution Brief (after planning)
472
+ ### For Execution Brief (after outline)
473
473
  - ✓ Plan objective (1 sentence)
474
474
  - ✓ Task summary (count and phases)
475
475
  - ✓ One-line approach
@@ -503,8 +503,8 @@ Here's what we discovered:
503
503
 
504
504
  Relevant decisions: ADR-001, ADR-002
505
505
 
506
- Ready to plan? Run:
507
- /intuition-plan"
506
+ Ready to outline? Run:
507
+ /intuition-outline"
508
508
  ```
509
509
 
510
510
  ---
@@ -515,16 +515,16 @@ Ready to plan? Run:
515
515
  ```
516
516
  IF prompt_brief.md doesn't exist but discovery.completed == true:
517
517
  → "Discovery was completed but brief not saved.
518
- Ready to plan? Run /intuition-plan"
518
+ Ready to outline? Run /intuition-outline"
519
519
 
520
- IF planning_brief.md doesn't exist but planning.started == true:
521
- → "Planning is underway but brief not prepared.
522
- Continue with /intuition-plan or run /intuition-handoff first"
520
+ IF outline_brief.md doesn't exist but outline.started == true:
521
+ → "Outline is underway but brief not prepared.
522
+ Continue with /intuition-outline or run /intuition-handoff first"
523
523
  ```
524
524
 
525
525
  ### What if state.json is corrupted?
526
526
  ```
527
- 1. Check for main files (prompt_brief.md, plan.md)
527
+ 1. Check for main files (prompt_brief.md, outline.md)
528
528
  2. Infer phase from which files exist
529
529
  3. Ask user: "I'm not sure where you are. What would you like to do?"
530
530
  ```