gm-skill 2.0.2567 → 2.0.2569

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
@@ -46,7 +46,8 @@ Wasm host-import link-module rule (`#[link(wasm_import_module="env")]` on every
46
46
 
47
47
  Dispatch = Write `.gm/exec-spool/in/<verb>/<N>.txt`, Read `.gm/exec-spool/out/<verb>-<N>.json` (nested) or `out/<N>.json` (root). `<N>` is session-id-prefixed (`<session_id>-<local-counter>`), never a bare small integer -- the shared daemon claims and answers in-files by the literal `(verb, N)` pair with no per-session partition, so unprefixed sequential ids collide across concurrent sessions on the same project (recall: `gm spool dispatch id collision cross-session crosstalk`). Wasm orchestrator services every verb; harness never executes side effects directly.
48
48
 
49
- - **Orchestrator verbs**: `instruction`, `transition`, `phase-status`, `mutable-resolve`, `mutable-add`, `mutable-list`, `memorize-fire`, `memorize-continue`, `discipline-note`, `residual-scan`, `auto-recall`, `prd-add`, `prd-resolve`, `prd-list`, `task-spawn`, `task-list`, `task-stop`, `task-output`, `fsm-vendor`, `fsm-validate`, `claim-audit`, `submodule-check`.
49
+ - **Orchestrator verbs**: `instruction`, `transition`, `phase-status`, `mutable-resolve`, `mutable-add`, `mutable-list`, `memorize-fire`, `memorize-continue`, `discipline-note`, `residual-scan`, `auto-recall`, `prd-add`, `prd-resolve`, `prd-list`, `task-spawn`, `task-list`, `task-stop`, `task-output`, `fsm-vendor`, `fsm-validate`, `fsm-propose-override`, `claim-audit`, `submodule-check`.
50
+ - **`fsm-propose-override`**: session-authored `.gm/instructions` override, gated two-phase (`{proposed:true,requires_confirmation:true}` first, real write only on a second dispatch carrying `user_confirmed:true`). `kind:"graph"` additionally requires `confirmation_witness` citing an `AskUserQuestion` dispatch -- graph overrides grant execution authority (hooks) per Section 4. Body: `{kind:"prose"|"graph"|"config", key, proposed_text, reason, witness}`. Validates the proposed graph/config before ever proposing it; a `stuck-loop-escalation` gate denial also emits `self-reconfig-candidate` as the machine-readable trigger for when a proposal is worth authoring.
50
51
  - **Wasm-direct verbs**: fs/kv/exec/fetch/env, recall, codesearch, memorize, memorize-prune, memorize-vacuum, memorize-retention, health, filter, full git verb family. Enumeration in the recall store (`recall: wasm-direct plugkit verbs full list`).
51
52
  - **Host-native verb**: `background-convert` (`{verb, task}`) detaches an already-in-flight dispatch so the daemon worker stops waiting on it -- agent-initiated only, never routed to gm.wasm. Detail: `.gm/daemon-config-reference.md`.
52
53
  - **memorize-prune**: prune bad/superseded memories; two-mode spec (key-remove vs query-review) in the recall store (`recall: memorize-prune verb two-mode spec`). **memorize-vacuum**/**memorize-retention**: compaction and retention-policy enforcement over the same memory store; both also accept underscore-form aliases (`memorize_vacuum`/`memorize_retention`), matching every `memorize-*` verb's hyphen/underscore dual registration.
@@ -1 +1 @@
1
- 2177ef78f3804c240379edc37775c5c970ea83b87de8bcff6f3ed8dc44c9877d plugkit-slim.wasm
1
+ 5f709275d5f02c32474faaaffc304b60ea91cad1cdfae56ec4f4da2397461e5b plugkit-slim.wasm
@@ -1 +1 @@
1
- 0.1.1208
1
+ 0.1.1210
@@ -1 +1 @@
1
- b0a07917cd9579ef01327ca60c9931f8399f3bfa41d1884cc6488b7ec47e3778 plugkit.wasm
1
+ 4f40350f6377c5065f918165378c7574d3871661d622b4f1f891654c868be705 plugkit.wasm
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.2567",
3
+ "version": "2.0.2569",
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": {
@@ -1 +1 @@
1
- 2177ef78f3804c240379edc37775c5c970ea83b87de8bcff6f3ed8dc44c9877d plugkit-slim.wasm
1
+ 5f709275d5f02c32474faaaffc304b60ea91cad1cdfae56ec4f4da2397461e5b plugkit-slim.wasm
@@ -1 +1 @@
1
- 0.1.1208
1
+ 0.1.1210
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.2567",
3
+ "version": "2.0.2569",
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.1208"
20
+ "plugkitVersion": "0.1.1210"
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.2567",
3
+ "version": "2.0.2569",
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",