gm-qwen 2.0.776 → 2.0.778

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
- e56686757b37802de8f6c2da83b0bcdcd7dfdd4617e6a91a70da7ebfed500372 plugkit-win32-x64.exe
2
- 72361c0c3fb481b85c5b976b50aa1b3c4d98a320c4e6e3227bfbe14bb93ac856 plugkit-win32-arm64.exe
3
- 9fd80ff30a1242315b2be70740e9c82eab17b3ad8af96a3cdc31f7eae79b1ca9 plugkit-darwin-x64
4
- 0ab57a6df17f76863fa00422fbd2f032b159a23913b84e235e7b081c0078fd05 plugkit-darwin-arm64
5
- 09ad6edc54073edab0d7596593f0f1787f25b3e8f07d18e31a354befffcdd514 plugkit-linux-x64
6
- bdf2d407f0620b1d8efab470255b5137a3c931d0c570299784ffd831635e1818 plugkit-linux-arm64
1
+ 182501796e3a4f9777523132d169e0a43a8cf734e0d53fe7ca3d923221353bbc plugkit-win32-x64.exe
2
+ abe7f2f4178d4a234acfed38dfeb478420197befb4396a32465384d0c6ff4e9c plugkit-win32-arm64.exe
3
+ df779ef1414a699d3ca66a285d6327a5ffe4275ec968c6a851e26858f3dc10d9 plugkit-darwin-x64
4
+ 34ac8eef07abe2b6fcdd7fd6941956480ce06b26362ca4a233d2c1418665f0a3 plugkit-darwin-arm64
5
+ e87ed7d1c2c7e809238cdc36ba1fe684da5556ac9a6ef84ddd4784beeed8cd37 plugkit-linux-x64
6
+ 155f32e059f25888e728efa0206fa0869989dead53440afca6be4b2f66c4601e plugkit-linux-arm64
@@ -1 +1 @@
1
- 0.1.255
1
+ 0.1.256
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.776",
3
+ "version": "2.0.778",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -23,5 +23,5 @@
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
- "plugkitVersion": "0.1.255"
26
+ "plugkitVersion": "0.1.256"
27
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-qwen",
3
- "version": "2.0.776",
3
+ "version": "2.0.778",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -148,6 +148,8 @@ File paths in `exec:nodejs` are platform-literal — node's `fs` does not auto-r
148
148
 
149
149
  Every `exec:<lang>` and `exec:bash` call should pass `--timeout-ms <ms>` (mandatory at the rs-exec RPC layer; the CLI emits a transitional warning when omitted). On timeout, partial streamed output is preserved and the runner emits `[exec timed out after Nms; partial output above]` — treat the marker as authoritative truncation and re-issue with a higher budget rather than retrying blindly.
150
150
 
151
+ **Utility-verb syntax**: `exec:wait`, `exec:sleep`, `exec:status`, `exec:close`, `exec:pause`, `exec:type`, `exec:runner`, `exec:kill-port`, `exec:recall`, `exec:memorize`, `exec:forget` all take their argument on the **next line** (heredoc body), never inline. `exec:status\n<task_id>` polls one task; bare `exec:status` lists all. `exec:sleep\n<task_id>` blocks until the task produces output or completes. `exec:close\n<task_id>` terminates and removes a task. Inline forms (`exec:status <id>`) are denied by the hook.
152
+
151
153
  `exec:codesearch` only — Glob/Grep/Find/Explore hook-blocked. Start 2 words → change/add one per pass → minimum 4 attempts before concluding absent.
152
154
 
153
155
  Pack runs: Promise.allSettled for parallel. Each idea own try/catch. Under 12s per call.