gm-skill 2.0.1330 → 2.0.1332

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.
@@ -1 +1 @@
1
- 0.1.499
1
+ 0.1.500
@@ -1 +1 @@
1
- 4ec8e1dd841083495bc5668223ca4da20eee8afc3c0100231ff1e98e54472ca7 plugkit.wasm
1
+ 6661c56bb5f57b4fe9545dcb2ca5cc6ffa6e57cbac2ef3f77f03133fd55b69ae plugkit.wasm
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.1330",
3
+ "version": "2.0.1332",
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": {
@@ -1623,6 +1623,18 @@ function makeHostFunctions(instanceRef) {
1623
1623
  const { event: _e, ts: _ts, sess: _s, sub: _sub, ...fields } = ev;
1624
1624
  logEvent(ev.sub || 'plugkit', eventName, fields);
1625
1625
  } catch (_) {}
1626
+ return 0;
1627
+ }
1628
+ if (level >= 2) {
1629
+ const gateMatch = msg.match(/^plugkit gate:\s+([\w-]+)\s+(.*)$/);
1630
+ if (gateMatch) {
1631
+ logEvent('hook', `deviation.${gateMatch[1]}`, { detail: gateMatch[2], source: 'stderr-bridge' });
1632
+ } else {
1633
+ const noiseRe = /^(instruction::handle|recall::recall_hits|embed::|memorize::)/;
1634
+ if (!noiseRe.test(msg)) {
1635
+ logEvent('plugkit', level >= 3 ? 'wasm.err' : 'wasm.warn', { msg: msg.slice(0, 500) });
1636
+ }
1637
+ }
1626
1638
  }
1627
1639
  return 0;
1628
1640
  } catch (e) {
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1330",
3
+ "version": "2.0.1332",
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.499"
20
+ "plugkitVersion": "0.1.500"
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.1330",
3
+ "version": "2.0.1332",
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",