@yemi33/minions 0.1.1804 → 0.1.1805
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 +3 -1
- package/engine/copilot-models.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/minions.js
CHANGED
|
@@ -145,7 +145,9 @@ function killMinionsProcesses(patterns) {
|
|
|
145
145
|
/** Spawn a detached dashboard. When `suppressOpen` is true, the new dashboard
|
|
146
146
|
* skips its auto-open of the browser — the existing tab will reconnect. */
|
|
147
147
|
function spawnDashboard(suppressOpen) {
|
|
148
|
-
const env =
|
|
148
|
+
const env = { ...process.env };
|
|
149
|
+
if (suppressOpen) env.MINIONS_NO_AUTO_OPEN = '1';
|
|
150
|
+
else delete env.MINIONS_NO_AUTO_OPEN;
|
|
149
151
|
const proc = spawn(process.execPath, [path.join(MINIONS_HOME, 'dashboard.js')], {
|
|
150
152
|
cwd: MINIONS_HOME, stdio: 'ignore', detached: true, windowsHide: true, env
|
|
151
153
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1805",
|
|
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"
|