@tgoodington/intuition 11.0.0 → 11.0.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tgoodington/intuition",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.1",
|
|
4
4
|
"description": "Domain-adaptive workflow system for Claude Code. Includes the Enuncia pipeline (discovery, compose, design, execute, verify) and the classic pipeline (prompt, outline, assemble, detail, build, test, implement).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -50,9 +50,9 @@ You are the engineering brain. Outline decided what needs to exist. You decide h
|
|
|
50
50
|
Phase 1: Intake — read discovery brief, outline, project map
|
|
51
51
|
Phase 2: Slice grouping — organize tasks by experience slice
|
|
52
52
|
Phase 2.5: Operational foundation — deployment, repo structure, dev workflow (code projects only)
|
|
53
|
-
Phase 3: Technical design — research + decisions per slice group
|
|
53
|
+
Phase 3: Technical design — research + decisions per slice group, present each group individually for user review
|
|
54
54
|
Phase 4: Spec writing — producer-ready specs per task
|
|
55
|
-
Phase 5:
|
|
55
|
+
Phase 5: Final confirmation — compact summary, approval gate
|
|
56
56
|
Phase 6: Write outputs — specs, updated map, state
|
|
57
57
|
```
|
|
58
58
|
|
|
@@ -174,6 +174,28 @@ Before moving to specs, verify this group's design against the discovery brief:
|
|
|
174
174
|
|
|
175
175
|
If something drifts, flag it to the user before proceeding.
|
|
176
176
|
|
|
177
|
+
### 3e. Present Group for Review
|
|
178
|
+
|
|
179
|
+
After designing each group, present it to the user **before moving to the next group**. Do NOT batch all groups together. One group at a time keeps the review digestible.
|
|
180
|
+
|
|
181
|
+
Present the group's design as plain text (not AskUserQuestion — that's reserved for the final gate):
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
**Group [N] of [total]: [Group Name] ([slice refs])**
|
|
185
|
+
|
|
186
|
+
[Technical approach — tables, data models, algorithms, whatever this group needs]
|
|
187
|
+
|
|
188
|
+
[Any decisions that need user input per decision posture]
|
|
189
|
+
|
|
190
|
+
[Any questions about this group]
|
|
191
|
+
|
|
192
|
+
When you're good with this group, say so and I'll move to the next one.
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Wait for the user to confirm or request changes before proceeding to the next group. If the user asks for changes, revise and re-present the same group.
|
|
196
|
+
|
|
197
|
+
This is the primary user interaction loop of the design phase. Each group gets the user's full attention.
|
|
198
|
+
|
|
177
199
|
## PHASE 4: SPEC WRITING
|
|
178
200
|
|
|
179
201
|
After designing each slice group, write a spec for each task within the group.
|
|
@@ -223,24 +245,16 @@ Specs should be concise. A producer reads this and knows exactly what to build,
|
|
|
223
245
|
|
|
224
246
|
## PHASE 5: USER REVIEW
|
|
225
247
|
|
|
226
|
-
|
|
248
|
+
Since each group was reviewed individually during Phase 3, this is a brief final confirmation — not a re-presentation. The user has already seen and approved every group.
|
|
227
249
|
|
|
228
|
-
|
|
229
|
-
Question: "Design complete. Here's the summary:
|
|
230
|
-
|
|
231
|
-
**[Slice Group 1 name]**
|
|
232
|
-
[1-2 sentence technical approach]
|
|
233
|
-
Tasks: [T1, T2, ...] — specs written
|
|
250
|
+
Present a compact summary via AskUserQuestion:
|
|
234
251
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
Tasks: [T3, T4, ...] — specs written
|
|
238
|
-
|
|
239
|
-
...
|
|
252
|
+
```
|
|
253
|
+
Question: "Design complete — all [N] groups reviewed.
|
|
240
254
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
255
|
+
Tasks specced: [T1, T2, ..., TN]
|
|
256
|
+
Decisions made: [count] ([count] surfaced to you, [count] resolved autonomously)
|
|
257
|
+
Project map updated: [key additions]
|
|
244
258
|
|
|
245
259
|
Ready for build?"
|
|
246
260
|
|