gm-copilot-cli 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.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: gm
3
- version: 2.0.459
3
+ version: 2.0.460
4
4
  description: State machine agent with hooks, skills, and automated git enforcement
5
5
  author: AnEntrypoint
6
6
  repository: https://github.com/AnEntrypoint/gm-copilot-cli
package/index.html CHANGED
@@ -18,7 +18,7 @@
18
18
  <script type="module">
19
19
  import { createElement as h, applyDiff, Fragment } from "webjsx";
20
20
  const PLATFORM_NAME="Copilot CLI",PLATFORM_TYPE="CLI Tool",PLATFORM_TYPE_COLOR="#3b82f6";
21
- const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.459";
21
+ const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.460";
22
22
  const GITHUB_URL="https://github.com/AnEntrypoint/gm-copilot-cli",BADGE_LABEL="copilot-cli";
23
23
  const FEATURES=[{"title":"State Machine","desc":"Immutable PLAN→EXECUTE→EMIT→VERIFY→COMPLETE phases with full mutable tracking"},{"title":"Semantic Search","desc":"Natural language codebase exploration via codesearch skill — no grep needed"},{"title":"Hooks","desc":"Pre-tool, session-start, prompt-submit, and stop hooks for full lifecycle control"},{"title":"Agents","desc":"gm, codesearch, and websearch agents pre-configured and ready to use"},{"title":"MCP Integration","desc":"Model Context Protocol server support built in"},{"title":"Auto-Recovery","desc":"Supervisor hierarchy ensures the system never crashes"}],INSTALL_STEPS=[{"desc":"Install via GitHub CLI","cmd":"gh extension install AnEntrypoint/gm-copilot-cli"},{"desc":"Restart your terminal — activates automatically"}];
24
24
  const CURRENT_PLATFORM="gm-copilot-cli";
package/manifest.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  name: gm
2
- version: 2.0.459
2
+ version: 2.0.460
3
3
  description: State machine agent with hooks, skills, and automated git enforcement
4
4
  author: AnEntrypoint
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-copilot-cli",
3
- "version": "2.0.459",
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",
@@ -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
 
package/tools.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.459",
3
+ "version": "2.0.460",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "tools": [
6
6
  {