gm-cc 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.
@@ -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.406",
7
+ "version": "2.0.408",
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.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",
package/plugin.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
  "author": {
6
6
  "name": "AnEntrypoint",
@@ -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