gm-qwen 2.0.776 → 2.0.777
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/gm.json +1 -1
- package/package.json +1 -1
- package/skills/planning/SKILL.md +2 -0
package/gm.json
CHANGED
package/package.json
CHANGED
package/skills/planning/SKILL.md
CHANGED
|
@@ -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.
|