@yemi33/minions 0.1.1734 → 0.1.1735
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 +5 -0
- package/dashboard.js +3 -3
- package/engine/copilot-models.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dashboard.js
CHANGED
|
@@ -652,7 +652,7 @@ function _compareVersions(a, b) {
|
|
|
652
652
|
|
|
653
653
|
// Kick off first npm check on startup, then re-check every 4 hours
|
|
654
654
|
checkNpmVersion().catch(() => {});
|
|
655
|
-
setInterval(() => checkNpmVersion().catch(() => {}), _getVersionCheckInterval());
|
|
655
|
+
setInterval(() => checkNpmVersion().catch(() => {}), _getVersionCheckInterval()).unref();
|
|
656
656
|
|
|
657
657
|
// Cache disk version + git commit (only changes on deploy/pull, not per-request)
|
|
658
658
|
let _diskVersionCache = null;
|
|
@@ -913,7 +913,7 @@ setInterval(() => {
|
|
|
913
913
|
for (const res of _statusStreamClients) {
|
|
914
914
|
try { res.write('data: ' + data + '\n\n'); } catch { _removeSseClient(_statusStreamClients, res); }
|
|
915
915
|
}
|
|
916
|
-
}, 10000);
|
|
916
|
+
}, 10000).unref();
|
|
917
917
|
|
|
918
918
|
|
|
919
919
|
// ── Command Center: session state + helpers ─────────────────────────────────
|
|
@@ -7191,7 +7191,7 @@ if (require.main === module) {
|
|
|
7191
7191
|
} catch (e) {
|
|
7192
7192
|
console.error(`[watchdog] Error: ${e.message}`);
|
|
7193
7193
|
}
|
|
7194
|
-
}, 30000);
|
|
7194
|
+
}, 30000).unref();
|
|
7195
7195
|
console.log(` Engine watchdog: active (checks every 30s)`);
|
|
7196
7196
|
});
|
|
7197
7197
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1735",
|
|
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"
|