gm-skill 2.0.1839 → 2.0.1841

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.839
1
+ 0.1.840
@@ -1 +1 @@
1
- 7e0a8cb997a43e605689519cdcf69c5133ec49c7f542f62825f52bb3d6b193b7 plugkit.wasm
1
+ 1c158d73707afaabe93a67270076573a4bd89a93262ff52f9c691277074b873f plugkit.wasm
@@ -1122,6 +1122,7 @@ module.exports = {
1122
1122
  readVersionFile,
1123
1123
  ensureGmPlugkitVersionFresh,
1124
1124
  ensureSkillMdFresh,
1125
+ ensureWrapperFresh,
1125
1126
  };
1126
1127
 
1127
1128
  if (require.main === module) {
package/gm-plugkit/cli.js CHANGED
@@ -5,7 +5,7 @@ const fs = require('fs');
5
5
  const os = require('os');
6
6
  const path = require('path');
7
7
  const cp = require('child_process');
8
- const { ensureReady, startSpoolDaemon, gmToolsDir, readVersionFile, ensureGmPlugkitVersionFresh, ensureSkillMdFresh } = require('./bootstrap');
8
+ const { ensureReady, startSpoolDaemon, gmToolsDir, readVersionFile, ensureGmPlugkitVersionFresh, ensureSkillMdFresh, ensureWrapperFresh } = require('./bootstrap');
9
9
 
10
10
  function readUpdateAvailableMarker(dir) {
11
11
  try {
@@ -217,6 +217,8 @@ function writeCliError(phase, err) {
217
217
  try { ensureGmPlugkitVersionFresh(); } catch (_) {}
218
218
  let skillRefresh = null;
219
219
  try { skillRefresh = ensureSkillMdFresh(); } catch (_) {}
220
+ let wrapperRefreshed = false;
221
+ try { wrapperRefreshed = ensureWrapperFresh(); } catch (_) {}
220
222
  writeCliStatus({ phase: 'ready', already_serving: true, watcher_pid: already.pid });
221
223
  console.log(JSON.stringify({
222
224
  ok: true,
@@ -224,7 +226,10 @@ function writeCliError(phase, err) {
224
226
  watcher_pid: already.pid,
225
227
  version: already.version,
226
228
  skills_refreshed: skillRefresh && skillRefresh.refreshed || [],
227
- message: 'plugkit already serving, no bootstrap/spawn needed',
229
+ wrapper_refreshed: wrapperRefreshed,
230
+ message: wrapperRefreshed
231
+ ? 'plugkit already serving; wrapper file on disk was stale and has been refreshed -- restart the watcher to load it'
232
+ : 'plugkit already serving, no bootstrap/spawn needed',
228
233
  }));
229
234
  process.exit(0);
230
235
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.1839",
3
+ "version": "2.0.1841",
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": {
@@ -1 +1 @@
1
- 0.1.839
1
+ 0.1.840
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1839",
3
+ "version": "2.0.1841",
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.839"
20
+ "plugkitVersion": "0.1.840"
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.1839",
3
+ "version": "2.0.1841",
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",