@tgoodington/intuition 11.7.1 → 11.7.2
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.2",
|
|
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",
|
|
@@ -12,6 +12,18 @@ allowed-tools: Read, Write, Glob, Grep, Bash
|
|
|
12
12
|
|
|
13
13
|
Detect where the project is in the Enuncia pipeline and route the user to the correct next skill. You are a router — read state, determine phase, suggest the next command.
|
|
14
14
|
|
|
15
|
+
## Package Version Info
|
|
16
|
+
|
|
17
|
+
**Installed version:**
|
|
18
|
+
```
|
|
19
|
+
!`npm list -g @tgoodington/intuition --depth=0 2>&1`
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
**Latest published version:**
|
|
23
|
+
```
|
|
24
|
+
!`npm view @tgoodington/intuition version 2>&1`
|
|
25
|
+
```
|
|
26
|
+
|
|
15
27
|
## CRITICAL RULES
|
|
16
28
|
|
|
17
29
|
1. You MUST read `.project-memory-state.json` before doing anything else.
|
|
@@ -22,6 +34,7 @@ Detect where the project is in the Enuncia pipeline and route the user to the co
|
|
|
22
34
|
## PROTOCOL
|
|
23
35
|
|
|
24
36
|
```
|
|
37
|
+
Step 0: Check package version — notify if update available (non-blocking)
|
|
25
38
|
Step 1: Read .project-memory-state.json
|
|
26
39
|
Step 2: Bootstrap if missing
|
|
27
40
|
Step 3: Resolve active context
|
|
@@ -29,6 +42,17 @@ Step 4: Detect phase
|
|
|
29
42
|
Step 5: Route to next skill
|
|
30
43
|
```
|
|
31
44
|
|
|
45
|
+
## VERSION CHECK (Step 0)
|
|
46
|
+
|
|
47
|
+
Parse version numbers from "Package Version Info" above:
|
|
48
|
+
|
|
49
|
+
1. Extract installed version from npm list output (look for `@tgoodington/intuition@X.Y.Z`)
|
|
50
|
+
2. Extract latest version from npm view output
|
|
51
|
+
3. If installed < latest: Show `Update available: v[installed] → v[latest]. Run /intuition-update to install.` at the TOP of output
|
|
52
|
+
4. If versions match or unparseable: Say nothing about versions
|
|
53
|
+
|
|
54
|
+
NON-BLOCKING: If version commands failed, skip and proceed.
|
|
55
|
+
|
|
32
56
|
## STEP 1-2: READ OR BOOTSTRAP STATE
|
|
33
57
|
|
|
34
58
|
Read `docs/project_notes/.project-memory-state.json`.
|