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.
- package/.claude-plugin/marketplace.json +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/skills/gm/SKILL.md +9 -1
- package/skills/planning/SKILL.md +16 -7
|
@@ -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.
|
|
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
package/plugin.json
CHANGED
package/skills/gm/SKILL.md
CHANGED
|
@@ -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
|
-
|
|
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.
|
package/skills/planning/SKILL.md
CHANGED
|
@@ -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`.
|
|
63
|
-
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
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
|
|
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
|
|