gm-skill 2.0.1487 → 2.0.1488

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/AGENTS.md CHANGED
@@ -38,7 +38,7 @@ Agents dispatch verbs by writing to `.gm/exec-spool/in/<verb>/<N>.txt` (request
38
38
 
39
39
  **memorize-prune verb**: deletes bad/superseded memories, pruning bad memory matters more than preserving good memory, since a wrong recall hit is worse than a miss. Two modes: explicit `{key}`/`{keys:[...]}` deletes exactly those mem keys (text + `-vec` embedding sibling) via the `host_kv_delete` host import; `{query}` returns review-only candidates (vector_top_k hits with keys) for the agent to judge, then re-dispatch with the stale `{keys:[...]}`. Query mode never auto-deletes by similarity, a blind similarity-delete is itself a bad-memory generator; the destructive step stays under agent judgment. Emits `memory.pruned` per deletion.
40
40
 
41
- **git verbs**: git is a first-class spool surface, never a shell command. Inspect: `git_status` returns `{dirty, modified, untracked, deleted, staged}`; `branch_status` returns `{branch, ahead, behind, remote}` (the `remote-pushed` witness); `git_log {count}` → `{commits:[{sha,subject}]}`; `git_diff {staged?,path?}`; `git_show {ref,stat?}`; `git_branch` → `{current,branches}`. Mutate: `git_add {paths|default -A}`; `git_commit {message,allow_empty?}` (argv-array, no shell quoting, porcelain-pre-checked `nothing_to_commit`); `git_checkout {ref,create?}`; `git_fetch {remote}`; `git_rm {paths,cached?}`; `git_revert {paths→discard | ref→revert-commit}`; `git_reset {ref,mode}` (hard guarded behind explicit `mode:hard`). Push: `git_push` is the ONLY admissible raw push, gates on `git_porcelain()` (refuses dirty, emits `deviation.push-dirty`), rebase-retries on remote-moved. **`git_finalize {message}` is the bundled COMPLETE-phase surface**: add-all → commit → porcelain-clean-gate → `git_push`, emitting `git.commit`/`git.push` witnesses, in ONE dispatch instead of 4+ Bash events (token/turn conservation); nothing-to-commit still pushes unpushed commits. All git verbs route through the `host_git` import, which resolves `git`→`git.exe` (no `.cmd`-shim terminal flash on Windows) and accepts a JSON argv array (no commit-message shattering). A `bash`/`sh`/`shell`/`powershell` body whose command is git-dominant is gated at `check_dispatch` (rs-plugkit `gates.rs`) and mirrored in `lib/spool-dispatch.js`, emitting `deviation.bash-git-bypass` and naming the equivalent verb; raw git via Bash bypasses the porcelain gate and the witness ledger.
41
+ **git verbs**: git is a first-class spool surface, never a shell command; `git_finalize {message}` is the bundled COMPLETE-phase push surface and `git_push` is the only admissible raw push (porcelain-gated, rebase-retry). A git-dominant `bash`/`powershell` body is gated (`deviation.bash-git-bypass`). Full per-verb shapes, host_git `.exe` resolution, and the gate detail live in rs-learn (`recall: git verbs rs-plugkit spool surface`).
42
42
 
43
43
  **filter verb**: pure stdout → compact-stdout transformation. Body `{kind, input, ...opts}` where kind is one of `grep`, `ls`, `tree`, `json`, `diff`, `git-status`, `log`. Returns `{output, stats:{bytes_in, bytes_out, saved_pct, ...}}`. Pipe raw command output through filter before letting it enter context, in-wasm, no subprocess. The bootstrap fetches only `plugkit.wasm`, there is no separate filter/rtk binary download.
44
44
 
@@ -1 +1 @@
1
- 0.1.610
1
+ 0.1.611
@@ -1 +1 @@
1
- e99ee08895dcc3cdbc7e88d49f1d94a67ced1a3531968bd27266383e9aae106d plugkit.wasm
1
+ 164d6df0e502c6c0796b87a5500a793a60cbc18bf332045f5cc9f254c27c6930 plugkit.wasm
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.1487",
3
+ "version": "2.0.1488",
4
4
  "description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform binary, verifies SHA256, and starts the spool watcher daemon. Includes plugkit-wasm-wrapper for WASM-based spool watching.",
5
5
  "main": "index.js",
6
6
  "bin": {
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1487",
3
+ "version": "2.0.1488",
4
4
  "description": "Spool-dispatch orchestration engine with unified state machine, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -17,5 +17,5 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "plugkitVersion": "0.1.610"
20
+ "plugkitVersion": "0.1.611"
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.1487",
3
+ "version": "2.0.1488",
4
4
  "description": "Canonical universal harness — AI-native software engineering via skill-driven orchestration; bootstraps plugkit for task execution and session isolation. Install in any AI coding agent host.",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",