@yemi33/minions 0.1.1828 → 0.1.1829
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/bin/minions.js +8 -5
- package/engine/copilot-models.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/minions.js
CHANGED
|
@@ -79,11 +79,14 @@ const isPortListening = (port) => getListeningPids(port).length > 0;
|
|
|
79
79
|
// the auto-open. We wipe the file during restart so the post-restart probe
|
|
80
80
|
// only counts beacons that arrive AFTER the new dashboard is up.
|
|
81
81
|
function _clearDashboardBrowserState(minionsHome) {
|
|
82
|
-
//
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
82
|
+
// Best-effort: a transient EPERM/ENOENT here just means the next probe sees
|
|
83
|
+
// a stale beacon for one cycle, not a restart failure.
|
|
84
|
+
try {
|
|
85
|
+
shared.safeWrite(
|
|
86
|
+
path.join(minionsHome, 'engine', 'dashboard-browser.json'),
|
|
87
|
+
{ tabs: {}, updatedAt: new Date().toISOString() },
|
|
88
|
+
);
|
|
89
|
+
} catch {}
|
|
87
90
|
}
|
|
88
91
|
|
|
89
92
|
async function _waitForBrowserReconnect(minionsHome, { afterMs, timeoutMs = 5000, pollMs = 500 } = {}) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1829",
|
|
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"
|