@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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1805 (2026-05-08)
4
+
5
+ ### Fixes
6
+ - preserve dashboard auto-open on restart
7
+
3
8
  ## 0.1.1804 (2026-05-08)
4
9
 
5
10
  ### Fixes
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 = suppressOpen ? { ...process.env, MINIONS_NO_AUTO_OPEN: '1' } : process.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
  });
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-08T18:04:30.632Z"
4
+ "cachedAt": "2026-05-08T18:14:57.011Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1804",
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"