gm-qwen 2.0.756 → 2.0.758
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/bin/plugkit.sha256 +6 -6
- package/gm.json +1 -1
- package/package.json +1 -1
- package/skills/planning/SKILL.md +4 -0
package/bin/plugkit.sha256
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
6a915bc5c0926ec49acb4d1e5c995375eeabb06b50293cbe0a4bb86bcc6fe342 plugkit-win32-x64.exe
|
|
2
|
+
6fbb19058635d310ec294b6d80df44ec3f388db99dffb32c424d646bc73d9d1a plugkit-win32-arm64.exe
|
|
3
|
+
0c15f9bc21051157931a948989469703f8c5cd21d11a6ec07e9b57c0e7447ddb plugkit-darwin-x64
|
|
4
|
+
5ab363b5ba2ebf13b8e1da988414ed37f20863669a391efb65fa6aa479c4c915 plugkit-darwin-arm64
|
|
5
|
+
db078a3810a17bd6eea8b160e78c8d72bf189962e17e7fdbfe1a65be00674a84 plugkit-linux-x64
|
|
6
|
+
4e0af3b31b3089a79c9f6e6f8d52d5fba56cb42911d479418db1aa9aad7cc858 plugkit-linux-arm64
|
package/gm.json
CHANGED
package/package.json
CHANGED
package/skills/planning/SKILL.md
CHANGED
|
@@ -138,6 +138,10 @@ Not parallelizable → invoke `gm-execute` directly.
|
|
|
138
138
|
|
|
139
139
|
`exec:<lang>` only via Bash. File I/O via exec:nodejs + fs. Git directly in Bash. Never Bash(node/npm/npx/bun).
|
|
140
140
|
|
|
141
|
+
File paths in `exec:nodejs` are platform-literal — node's `fs` does not auto-resolve POSIX shortcuts like `/tmp`. Use `os.tmpdir()` and `path.join` for portable temp paths; reserve `/tmp/...` for `exec:bash` heredocs where the shell rewrites the prefix.
|
|
142
|
+
|
|
143
|
+
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.
|
|
144
|
+
|
|
141
145
|
`exec:codesearch` only — Glob/Grep/Find/Explore hook-blocked. Start 2 words → change/add one per pass → minimum 4 attempts before concluding absent.
|
|
142
146
|
|
|
143
147
|
Pack runs: Promise.allSettled for parallel. Each idea own try/catch. Under 12s per call.
|