@tgoodington/intuition 11.7.0 → 11.7.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.7.
|
|
3
|
+
"version": "11.7.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",
|
|
@@ -209,20 +209,24 @@ If something drifts, flag it to the user before proceeding.
|
|
|
209
209
|
|
|
210
210
|
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.
|
|
211
211
|
|
|
212
|
+
**Default to succinct.** The user is reviewing groups back-to-back — dense walls of tables, data models, and algorithmic detail make that exhausting. Lead with a tight summary; hold the full detail in reserve and offer it on request.
|
|
213
|
+
|
|
212
214
|
Present the group's design as plain text (not AskUserQuestion — that's reserved for the final gate):
|
|
213
215
|
|
|
214
216
|
```
|
|
215
217
|
**Group [N] of [total]: [Group Name] ([slice refs])**
|
|
216
218
|
|
|
217
|
-
[
|
|
219
|
+
[Succinct technical approach — 2–5 sentences or a short bullet list. What it's built with, the key structural choice, how it connects to adjacent groups. No tables, no full data models, no file-by-file breakdowns at this level.]
|
|
218
220
|
|
|
219
|
-
[Any decisions that need user input per decision posture]
|
|
221
|
+
[Any decisions that need user input per decision posture — surface these even in succinct mode; they require input regardless.]
|
|
220
222
|
|
|
221
|
-
[Any questions about this group]
|
|
223
|
+
[Any questions about this group.]
|
|
222
224
|
|
|
223
|
-
|
|
225
|
+
Say "expand" for full detail (data models, file layout, algorithms), ask about a specific aspect, or confirm to move to the next group.
|
|
224
226
|
```
|
|
225
227
|
|
|
228
|
+
If the user says "expand" or asks about a specific aspect, present the deeper detail (tables, data models, algorithms, file layout) then re-offer confirmation. Decisions and surprises still surface by default regardless of density — succinct mode reduces elaboration, not signal.
|
|
229
|
+
|
|
226
230
|
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.
|
|
227
231
|
|
|
228
232
|
This is the primary user interaction loop of the design phase. Each group gets the user's full attention.
|