gm-skill 2.0.1877 → 2.0.1879

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,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.1877",
3
+ "version": "2.0.1879",
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": {
@@ -4207,6 +4207,17 @@ async function runSpoolWatcher(instance, spoolDir) {
4207
4207
  try { _writeStatusBusy(360000); } catch (_) {}
4208
4208
  } else if (verb === 'git_finalize' || verb === 'git_push' || verb === 'git_fetch') {
4209
4209
  try { _writeStatusBusy(180000); } catch (_) {}
4210
+ } else if (verb === 'instruction') {
4211
+ // instruction's auto_recall path can trigger a cold bert-embed-model
4212
+ // reload (~10-15s, paid fresh every process restart -- no cross-
4213
+ // process cache) plus memory_md_sync_partial processing a backlog of
4214
+ // .gm/memories/*.md files a few at a time. Without busy protection
4215
+ // here, the 30s heartbeat-stale supervisor check kills the watcher
4216
+ // mid-sync on any project with a nontrivial memory corpus, and the
4217
+ // respawned process pays the same cold-reload cost again before
4218
+ // making further progress -- a restart loop that never converges.
4219
+ // Same class of blocking work as the codesearch case above.
4220
+ try { _writeStatusBusy(300000); } catch (_) {}
4210
4221
  }
4211
4222
 
4212
4223
  let autoRecallPayload = null;
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1877",
3
+ "version": "2.0.1879",
4
4
  "description": "Spool-dispatch orchestration engine with unified state machine, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.1877",
3
+ "version": "2.0.1879",
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",