gm-skill 2.0.1720 → 2.0.1721
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/gm-plugkit/bootstrap.js +1 -0
- package/gm-plugkit/cli.js +2 -1
- package/gm-plugkit/package.json +1 -1
- package/gm.json +1 -1
- package/package.json +1 -1
package/gm-plugkit/bootstrap.js
CHANGED
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 } = require('./bootstrap');
|
|
8
|
+
const { ensureReady, startSpoolDaemon, gmToolsDir, readVersionFile, ensureGmPlugkitVersionFresh } = require('./bootstrap');
|
|
9
9
|
|
|
10
10
|
const usage = `gm-plugkit -- Bootstrap and daemon-spawn for gm plugkit binary.
|
|
11
11
|
|
|
@@ -203,6 +203,7 @@ function writeCliError(phase, err) {
|
|
|
203
203
|
try { onDiskVersion = readVersionFile(); } catch (_) { onDiskVersion = null; }
|
|
204
204
|
const versionDrifted = !!(already && onDiskVersion && already.version && already.version !== onDiskVersion);
|
|
205
205
|
if (statusServing(already, 12000) && !versionDrifted) {
|
|
206
|
+
try { ensureGmPlugkitVersionFresh(); } catch (_) {}
|
|
206
207
|
writeCliStatus({ phase: 'ready', already_serving: true, watcher_pid: already.pid });
|
|
207
208
|
console.log(JSON.stringify({
|
|
208
209
|
ok: true,
|
package/gm-plugkit/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-plugkit",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1721",
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-skill",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1721",
|
|
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",
|