gm-plugkit 2.0.2516 → 2.0.2517
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/SKILL.md +0 -2
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -12,8 +12,6 @@ Verbs write to `.gm/exec-spool/in/<verb>/<N>.txt` as JSON; read the paired `.gm/
|
|
|
12
12
|
|
|
13
13
|
Boot probe, one call: `cat .gm/exec-spool/.status.json 2>/dev/null; echo ---; cat .gm/exec-spool/.turn-summary.json 2>/dev/null; echo ---; date +%s%3N`. Boot/reboot: `bun x gm-plugkit@latest spool` (`npx -y gm-plugkit@latest spool` if no bun) -- fire-and-forget, does not wait for serving; write your first verb right after. Dead watcher = `.status.json` `ts` stale >5min AND no future `busy_until`: boot fresh, re-dispatch. A `busy_until` in the future licenses a bounded wait (condition-poll the out/ file, never a blind sleep); it does not license declaring the watcher dead. `dispatch_orphaned` = bare re-dispatch once `ts` is fresh again; its `sweeping_pid` field changing across repeats is a real respawn (same recovery), not a stuck loop.
|
|
14
14
|
|
|
15
|
-
One `gm.wasm` instance serves every project on the machine. When `instruction` specifically (not the daemon broadly) repeatedly orphans while other verbs keep responding normally, keep driving the walk forward on the verbs that work (`prd-add`, `prd-resolve`, `exec_js`) and retry `instruction` opportunistically rather than blocking all progress on it.
|
|
16
|
-
|
|
17
15
|
Spool verbs: `codesearch`, `recall`, `fetch`, `exec_js`, `browser`, `memorize-fire`, `prd-add`/`prd-resolve`/`mutable-add`/`mutable-resolve`, `transition`, `phase-status`, the git verb family (`git_status`, `git_finalize`, `git_push`, ...). Every capability routes through its verb -- codesearch (never Grep/Glob for discovery), browser (never raw Chrome/playwright), git verbs (never raw `git` via Bash, gated `deviation.bash-git-bypass`). `git_finalize {message}` bundles add->commit->porcelain-gate->push->CI-watch in one dispatch.
|
|
18
16
|
|
|
19
17
|
`browser` body is plain-text prefixed, never CLI-flag syntax: `session new`, `session list`, `session close <id>` / `session reset <id>`, `timeout=<ms>\n<expr>`, `url=<target>\n<expr>`, `screenshot[=name]\n<expr>`, `dom=<selector>\n<expr>`, or a bare JS body. Prefixes stack top-to-bottom. Sessions persist a live Chrome process across dispatches until closed/idle-reaped. Every response includes `result.debug: {console, pageErrors, network, performance, gl}` unconditionally.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-plugkit",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2517",
|
|
4
4
|
"description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform wasm, verifies SHA256, and launches agentplug-runner (the native wasm host) as the spool watcher daemon.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|