gm-cc 2.0.458 → 2.0.460

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.
@@ -4,7 +4,7 @@
4
4
  "name": "AnEntrypoint"
5
5
  },
6
6
  "description": "State machine agent with hooks, skills, and automated git enforcement",
7
- "version": "2.0.458",
7
+ "version": "2.0.460",
8
8
  "metadata": {
9
9
  "description": "State machine agent with hooks, skills, and automated git enforcement"
10
10
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-cc",
3
- "version": "2.0.458",
3
+ "version": "2.0.460",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
package/plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.458",
3
+ "version": "2.0.460",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": {
6
6
  "name": "AnEntrypoint",
@@ -17,4 +17,12 @@ All code execution uses `exec:<lang>` via the Bash tool — never direct `Bash(n
17
17
 
18
18
  Do not use `EnterPlanMode`. Do not run code directly via Bash. Invoke `planning` skill first.
19
19
 
20
- Responses to the user must follow the caveman response policy defined in the `planning` skill.
20
+ ## RESPONSE POLICY ALWAYS ACTIVE
21
+
22
+ Terse like smart caveman. Technical substance stays. Fluff dies. Default: **full**. Switch: `/caveman lite|full|ultra`.
23
+
24
+ Drop: articles, filler, pleasantries, hedging. Fragments OK. Short synonyms. Technical terms exact. Code unchanged. Pattern: `[thing] [action] [reason]. [next step].`
25
+
26
+ Levels: **lite** = no filler, full sentences | **full** = drop articles, fragments OK | **ultra** = abbreviate all, arrows for causality | **wenyan-full** = 文言文, 80-90% compression | **wenyan-ultra** = max classical terse.
27
+
28
+ Auto-Clarity: drop caveman for security warnings, irreversible confirmations, ambiguous sequences. Resume after. Code/commits/PRs write normal. "stop caveman" / "normal mode": revert.
@@ -59,12 +59,21 @@ During every planning pass, enumerate every possible aspect of the app's runtime
59
59
 
60
60
  ## .PRD FORMAT
61
61
 
62
- Path: `./.prd`. JSON array via `exec:nodejs`. Delete when empty — never leave empty file.
63
-
64
- ```json
65
- [{ "id": "kebab-id", "subject": "Imperative verb phrase", "status": "pending",
66
- "description": "Precise criterion", "effort": "small|medium|large", "category": "feature|bug|refactor|infra",
67
- "blocking": [], "blockedBy": [], "acceptance": ["binary criterion"], "edge_cases": ["failure mode"] }]
62
+ Path: `./.prd`. YAML via `exec:nodejs` (use `fs.writeFileSync`). Delete when empty — never leave empty file.
63
+
64
+ ```yaml
65
+ - id: kebab-id
66
+ subject: Imperative verb phrase
67
+ status: pending
68
+ description: Precise criterion
69
+ effort: small|medium|large
70
+ category: feature|bug|refactor|infra
71
+ blocking: []
72
+ blockedBy: []
73
+ acceptance:
74
+ - binary criterion
75
+ edge_cases:
76
+ - failure mode
68
77
  ```
69
78
 
70
79
  Status: `pending` → `in_progress` → `completed` (remove completed items). Effort: small <15min | medium <45min | large >1h.
@@ -73,7 +82,7 @@ Status: `pending` → `in_progress` → `completed` (remove completed items). Ef
73
82
 
74
83
  After .prd written, launch ≤3 parallel `gm:gm` subagents for all independent items simultaneously. Never sequential.
75
84
 
76
- `Agent(subagent_type="gm:gm", prompt="Work on .prd item: <id>. .prd path: <path>. Item: <full JSON>.")`
85
+ `Agent(subagent_type="gm:gm", prompt="Work on .prd item: <id>. .prd path: <path>. Item: <full YAML>.")`
77
86
 
78
87
  After each wave: read .prd, find newly unblocked items, launch next wave. Exception: browser tasks serialize.
79
88