@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.
@@ -6,14 +6,14 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Domain-adaptive workflow system for Claude Code with specialist teams and format producers.",
9
- "version": "9.4.1"
9
+ "version": "9.4.0"
10
10
  },
11
11
  "plugins": [
12
12
  {
13
13
  "name": "intuition",
14
14
  "source": ".",
15
15
  "description": "Domain-adaptive workflow system: prompt, outline, assemble, detail, build, test. 15 skills, 14 domain specialists, 6 format producers.",
16
- "version": "9.4.1",
16
+ "version": "9.4.0",
17
17
  "author": {
18
18
  "name": "Intuition Contributors"
19
19
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "intuition",
3
3
  "description": "Domain-adaptive workflow system for Claude Code: prompt, outline, assemble specialist teams, detail with domain experts, build with format producers, test code output. Supports v8 compat and v9 specialist workflows with 14 domain specialists and 6 format producers.",
4
- "version": "9.4.1",
4
+ "version": "9.4.0",
5
5
  "author": {
6
6
  "name": "Intuition Contributors"
7
7
  },
package/README.md CHANGED
@@ -15,11 +15,10 @@ This installs 12 skills globally to `~/.claude/skills/`. Verify by typing `/` in
15
15
 
16
16
  ## Workflow
17
17
 
18
- Five phases with handoff transitions between each:
18
+ Two workflow modes:
19
19
 
20
- ```
21
- prompt → outline → [design] engineer → build
22
- ```
20
+ **v9 (current):** `prompt → outline → assemble → detail → build → test`
21
+ **v8 (legacy):** `prompt → outline → build` (with handoff transitions)
23
22
 
24
23
  The first cycle is the **trunk**. After completion, create **branches** for new features or changes.
25
24
 
@@ -29,18 +28,14 @@ The first cycle is the **trunk**. After completion, create **branches** for new
29
28
  /intuition-initialize # Set up project memory (once per project)
30
29
  /intuition-start # Check status, get routed to next step
31
30
  /intuition-prompt # Describe what you want to build
32
- /intuition-handoff # Process → move to outlining
33
31
  /intuition-outline # Create the blueprint
34
- /intuition-handoff # Review design flags
35
- /intuition-design # Elaborate flagged items (if any)
36
- /intuition-handoff # Prepare for engineering
37
- /intuition-engineer # Create code specifications
38
- /intuition-handoff # Prepare for build
32
+ /intuition-assemble # Match tasks to domain specialists
33
+ /intuition-detail # Specialists produce blueprints
39
34
  /intuition-build # Implement and verify
40
- /intuition-handoff # Complete the cycle
35
+ /intuition-test # Quality gate
41
36
  ```
42
37
 
43
- Run `/clear` before each phase skill to keep context clean. Not every project needs design — if the outline is clear enough, handoff skips straight to engineer.
38
+ Run `/clear` before each phase skill to keep context clean.
44
39
 
45
40
  ## Skills
46
41
 
@@ -49,20 +44,28 @@ Run `/clear` before each phase skill to keep context clean. Not every project ne
49
44
  | Skill | Model | Purpose |
50
45
  |-------|-------|---------|
51
46
  | `/intuition-prompt` | opus | Refines a rough idea into an outline-ready brief |
52
- | `/intuition-outline` | opus | Strategic blueprint with tasks, dependencies, design flags |
53
- | `/intuition-design` | opus | ECD framework design exploration for flagged items |
54
- | `/intuition-engineer` | opus | Code-level specs through research + interactive dialogue |
55
- | `/intuition-build` | sonnet | Delegates implementation, verifies against specs |
47
+ | `/intuition-outline` | opus | Strategic blueprint with tasks, dependencies, depth assessment |
48
+ | `/intuition-assemble` | sonnet | Matches tasks to domain specialists and producers |
49
+ | `/intuition-detail` | opus | Domain specialists produce detailed blueprints |
50
+ | `/intuition-build` | sonnet | Delegates implementation, verifies against blueprints |
51
+ | `/intuition-test` | opus | Post-build quality gate — test strategy and execution |
56
52
 
57
53
  ### Infrastructure
58
54
 
59
55
  | Skill | Model | Purpose |
60
56
  |-------|-------|---------|
61
57
  | `/intuition-start` | haiku | Detects phase, routes to next skill, version check |
62
- | `/intuition-handoff` | haiku | State transitions, brief generation, design loop |
58
+ | `/intuition-handoff` | sonnet | Branch creation, v8 state transitions, migrations |
63
59
  | `/intuition-initialize` | haiku | Project memory setup (run once) |
64
60
  | `/intuition-update` | haiku | Package update manager |
65
61
 
62
+ ### Standalone Tools
63
+
64
+ | Skill | Model | Purpose |
65
+ |-------|-------|---------|
66
+ | `/intuition-meander` | opus | Thought partner — reason through problems collaboratively |
67
+ | `/intuition-think-tank` | opus | Rapid expert-panel analysis of documents, ideas, or proposals |
68
+
66
69
  ### Advisory
67
70
 
68
71
  | Skill | Model | Purpose |
@@ -73,21 +76,12 @@ Run `/clear` before each phase skill to keep context clean. Not every project ne
73
76
 
74
77
  ## Key Concepts
75
78
 
76
- ### Engineer → Build Split
77
-
78
- - **Engineer** (opus) determines the code-level HOW: researches codebase, discusses decisions interactively, produces `code_specs.md`
79
- - **Build** (sonnet) implements against specs: delegates to subagents, verifies with reviewers, runs mandatory security review, produces `build_report.md`
80
-
81
79
  ### Trunk and Branches
82
80
 
83
81
  - **Trunk**: First prompt→build cycle — the foundation
84
82
  - **Branches**: Subsequent cycles that read parent context for continuity
85
83
  - After any cycle completes, `/intuition-start` offers branch creation or debugging
86
84
 
87
- ### Design Loop
88
-
89
- The outline flags tasks needing design exploration. Handoff manages a loop: design one item → check for more → design next or advance to engineer.
90
-
91
85
  ### Project Memory
92
86
 
93
87
  All workflow state and knowledge lives in `docs/project_notes/`:
@@ -103,8 +97,7 @@ intuition/
103
97
  │ ├── intuition-start/ # Session primer + routing
104
98
  │ ├── intuition-prompt/ # Discovery refinement
105
99
  │ ├── intuition-outline/ # Strategic outlining
106
- │ ├── intuition-design/ # ECD design exploration
107
- │ ├── intuition-engineer/ # Code spec creation
100
+ │ ├── intuition-meander/ # Thought partner
108
101
  │ ├── intuition-build/ # Implementation + verification
109
102
  │ ├── intuition-handoff/ # State transitions + briefs
110
103
  │ ├── intuition-debugger/ # Post-completion diagnostics
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tgoodington/intuition",
3
- "version": "9.4.1",
3
+ "version": "10.0.0",
4
4
  "description": "Domain-adaptive workflow system for Claude Code: prompt, outline, assemble specialist teams, detail with domain experts, build with format producers, test code output. Supports v8 compat (design, engineer, build) and v9 specialist workflows with 14 domain specialists and 6 format producers.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -46,8 +46,8 @@ const skills = [
46
46
  'intuition-prompt',
47
47
  'intuition-handoff',
48
48
  'intuition-outline',
49
- 'intuition-design',
50
- 'intuition-engineer',
49
+ 'intuition-meander',
50
+ 'intuition-think-tank',
51
51
  'intuition-build',
52
52
  'intuition-test',
53
53
  'intuition-debugger',
@@ -117,6 +117,19 @@ try {
117
117
  log(`Removed old /intuition-execute skill (split into /intuition-engineer + /intuition-build in v8.0)`);
118
118
  }
119
119
 
120
+ // Remove old design/engineer skills if they exist (removed in v10.0)
121
+ const oldDesignDest = path.join(claudeSkillsDir, 'intuition-design');
122
+ if (fs.existsSync(oldDesignDest)) {
123
+ fs.rmSync(oldDesignDest, { recursive: true, force: true });
124
+ log(`Removed old /intuition-design skill (removed in v10.0)`);
125
+ }
126
+
127
+ const oldEngineerDest = path.join(claudeSkillsDir, 'intuition-engineer');
128
+ if (fs.existsSync(oldEngineerDest)) {
129
+ fs.rmSync(oldEngineerDest, { recursive: true, force: true });
130
+ log(`Removed old /intuition-engineer skill (removed in v10.0)`);
131
+ }
132
+
120
133
  // Remove old plan skill if it exists (renamed to outline in v9.1)
121
134
  const oldPlanDest = path.join(claudeSkillsDir, 'intuition-plan');
122
135
  if (fs.existsSync(oldPlanDest)) {
@@ -229,8 +242,8 @@ try {
229
242
  log(` /intuition-prompt - Focused discovery (prompt-engineering refinement)`);
230
243
  log(` /intuition-handoff - Handoff orchestrator (phase transitions + design loop)`);
231
244
  log(` /intuition-outline - Strategic outline (ARCH protocol + design flagging)`);
232
- log(` /intuition-design - Design exploration (ECD framework, domain-agnostic)`);
233
- log(` /intuition-engineer - Code spec creator (engineering decisions)`);
245
+ log(` /intuition-meander - Thought partner (reasoning + exploration)`);
246
+ log(` /intuition-think-tank - Rapid expert-panel analysis`);
234
247
  log(` /intuition-assemble - Team assembler (v9 specialist/producer matching)`);
235
248
  log(` /intuition-detail - Domain specialist orchestrator (v9 detail phase)`);
236
249
  log(` /intuition-build - Build manager (blueprint + producer delegation)`);
@@ -46,6 +46,9 @@ try {
46
46
  'intuition-prompt',
47
47
  'intuition-handoff',
48
48
  'intuition-outline',
49
+ 'intuition-meander',
50
+ 'intuition-think-tank',
51
+ // Legacy skills (removed in v10.0)
49
52
  'intuition-design',
50
53
  'intuition-engineer',
51
54
  'intuition-build',