@yemi33/minions 0.1.1831 → 0.1.1832

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/CHANGELOG.md CHANGED
@@ -1,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.1831 (2026-05-09)
3
+ ## 0.1.1832 (2026-05-10)
4
+
5
+ ### Fixes
6
+ - warm CC runtime binary cache on startup to avoid cold-start missing-runtime errors
7
+
8
+ ## 0.1.1830 (2026-05-09)
4
9
 
5
10
  ### Features
6
- - aggressively delete tech debt — drop adoPoll* aliases and permissionMode preflight warning (#2285)
7
- - hoist targetUrl in fetchAdoBuildErrorLog to avoid ReferenceError (#2284)
8
11
  - revert CC action-result Context: suffix (#2283)
9
12
 
10
13
  ## 0.1.1829 (2026-05-09)
package/dashboard.js CHANGED
@@ -9388,6 +9388,18 @@ if (require.main === module) {
9388
9388
  }
9389
9389
  }
9390
9390
 
9391
+ // Warm the CC runtime binary cache off the request path so the first CC /
9392
+ // doc-chat call after a fresh dashboard start doesn't pay the `where claude`
9393
+ // / `npm root -g` probe cost (and doesn't surface a transient missing-runtime
9394
+ // error if those probes are slow on a cold Windows AV/filesystem).
9395
+ setImmediate(() => {
9396
+ try {
9397
+ const ccRuntimeName = shared.resolveCcCli(CONFIG.engine);
9398
+ const runtime = resolveRuntime(ccRuntimeName);
9399
+ if (runtime) llm._resolveBin(runtime);
9400
+ } catch { /* warm-up is best-effort */ }
9401
+ });
9402
+
9391
9403
  // ─── Engine Watchdog ─────────────────────────────────────────────────────
9392
9404
  // Every 30s, check if engine PID is alive. If dead but control.json says
9393
9405
  // running, auto-restart it. Prevents silent engine death.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-09T23:56:38.102Z"
4
+ "cachedAt": "2026-05-10T00:14:32.692Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1831",
3
+ "version": "0.1.1832",
4
4
  "description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
5
5
  "bin": {
6
6
  "minions": "bin/minions.js"