gm-skill 2.0.1506 → 2.0.1507

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.1506",
3
+ "version": "2.0.1507",
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": {
@@ -2900,10 +2900,13 @@ async function runSpoolWatcher(instance, spoolDir) {
2900
2900
  // (the VERB ABORT). Stamp a busy_until window before the synchronous dispatch so the
2901
2901
  // supervisor's heartbeat-stale check honors it, exactly as the browser runner does.
2902
2902
  // codesearch is the longest synchronous verb: a cold first call loads the 133MB bge-small
2903
- // bert model AND re-indexes the tree, far exceeding the 30s stale limit. Without busy_until
2904
- // the supervisor reaps the watcher mid-index and respawns it, which cold-loads again =
2905
- // respawn-thrash that never completes the index (the codeinsight-stale symptom).
2906
- if (verb === 'git_finalize' || verb === 'git_push' || verb === 'git_fetch' || verb === 'codesearch') {
2903
+ // bert model AND re-indexes the tree. A cold build was witnessed at ~252s (dispatch log
2904
+ // codesearch ms=251772), so a 180s window let the supervisor reap the watcher mid-index and
2905
+ // respawn it, cold-loading again = respawn-thrash that never completes (the codeinsight-stale
2906
+ // symptom). codesearch gets a 360s window; the bounded git verbs keep 180s.
2907
+ if (verb === 'codesearch') {
2908
+ try { _writeStatusBusy(360000); } catch (_) {}
2909
+ } else if (verb === 'git_finalize' || verb === 'git_push' || verb === 'git_fetch') {
2907
2910
  try { _writeStatusBusy(180000); } catch (_) {}
2908
2911
  }
2909
2912
 
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1506",
3
+ "version": "2.0.1507",
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.1506",
3
+ "version": "2.0.1507",
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",