gm-copilot-cli 2.0.406 → 2.0.408

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.406
3
+ version: 2.0.408
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.406";
21
+ const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.408";
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.406
2
+ version: 2.0.408
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.406",
3
+ "version": "2.0.408",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -108,6 +108,8 @@ Invoke `browser` skill. Escalation — exhaust each before advancing:
108
108
  3. navigate/click/type — only when real events required
109
109
  4. screenshot — last resort only
110
110
 
111
+ **Browser tasks serialize within a project**: never launch parallel subagents that both use `exec:browser` for the same project/session. Each project gets one Chrome instance; concurrent browser calls share the same window and will conflict.
112
+
111
113
  ## SKILL REGISTRY
112
114
 
113
115
  **`planning`** — Mutable discovery and .prd construction. Invoke at start and on any new unknown.
@@ -77,6 +77,7 @@ Independent items (empty `blockedBy`) run in parallel waves of ≤3 subagents.
77
77
  - Each subagent handles one item: resolves it, witnesses output, removes from .prd
78
78
  - After each wave: check newly unblocked items, launch next wave
79
79
  - Never run independent items sequentially. Never launch more than 3 at once.
80
+ - **Exception — browser tasks**: items requiring `exec:browser` must run sequentially, never in parallel. Each project has one Chrome instance; concurrent browser subagents will conflict.
80
81
 
81
82
  ## COMPLETION CRITERION
82
83
 
package/tools.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.406",
3
+ "version": "2.0.408",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "tools": [
6
6
  {