gm-cc 2.0.459 → 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/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/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
|
|