@yemi33/minions 0.1.432 → 0.1.434

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.432 (2026-04-06)
3
+ ## 0.1.434 (2026-04-06)
4
4
 
5
5
  ### Features
6
6
  - version check interval on settings page
@@ -11,6 +11,8 @@
11
11
  - Convert remaining lifecycle.js safeWrite calls to mutateJsonFileLocked
12
12
 
13
13
  ### Fixes
14
+ - don't show 'update available' when running from git repo
15
+ - CC network error shows helpful message + New Session button
14
16
  - clicking outside command center dismisses it
15
17
  - PR dedup prefers merged/abandoned over active regardless of order
16
18
  - extract skills from inbox notes, not just agent stdout
@@ -320,8 +320,11 @@ async function _ccDoSend(message, skipUserMsg) {
320
320
  }
321
321
  } else {
322
322
  const retryId = 'cc-retry-' + Date.now();
323
+ const isNetworkError = e.message === 'Failed to fetch' || e.message.includes('NetworkError');
323
324
  ccAddMessage('assistant', '<span style="color:var(--red)">Error: ' + escHtml(e.message) + '</span>' +
324
- '<button id="' + retryId + '" onclick="ccRetryLast()" style="margin-top:6px;padding:4px 12px;background:var(--surface2);border:1px solid var(--border);border-radius:4px;color:var(--blue);cursor:pointer;font-size:11px">Retry</button>');
325
+ (isNetworkError ? '<div style="font-size:10px;color:var(--muted);margin-top:4px">Dashboard may have restarted. Try again or click New Session.</div>' : '') +
326
+ '<button id="' + retryId + '" onclick="ccRetryLast()" style="margin-top:6px;padding:4px 12px;background:var(--surface2);border:1px solid var(--border);border-radius:4px;color:var(--blue);cursor:pointer;font-size:11px">Retry</button>' +
327
+ ' <button onclick="ccNewSession()" style="margin-top:6px;padding:4px 12px;background:var(--surface2);border:1px solid var(--border);border-radius:4px;color:var(--muted);cursor:pointer;font-size:11px">New Session</button>');
325
328
  }
326
329
  } finally {
327
330
  _ccSending = false;
package/dashboard.js CHANGED
@@ -343,7 +343,8 @@ function getStatus() {
343
343
  dashboardStale,
344
344
  stale: engineStale || dashboardStale,
345
345
  latest: _npmVersionCache?.latest || null,
346
- updateAvailable: !!(diskVersion && _npmVersionCache?.latest && _npmVersionCache.latest !== diskVersion && _compareVersions(_npmVersionCache.latest, diskVersion) > 0),
346
+ // Only show "update available" for npm installs (no git repo) repo users manage their own updates
347
+ updateAvailable: !diskCommit && !!(diskVersion && _npmVersionCache?.latest && _npmVersionCache.latest !== diskVersion && _compareVersions(_npmVersionCache.latest, diskVersion) > 0),
347
348
  _npmCheckError: _npmVersionCache?.error || null,
348
349
  };
349
350
  })(),
@@ -3488,7 +3489,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
3488
3489
  dashboardRunning: _dashboardVersion.codeVersion,
3489
3490
  dashboardRunningCommit: _dashboardVersion.codeCommit,
3490
3491
  latest: npm.latest,
3491
- updateAvailable: !!(diskVersion && npm.latest && _compareVersions(npm.latest, diskVersion) > 0),
3492
+ updateAvailable: !diskCommit && !!(diskVersion && npm.latest && _compareVersions(npm.latest, diskVersion) > 0),
3492
3493
  engineStale,
3493
3494
  dashboardStale,
3494
3495
  stale: engineStale || dashboardStale,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.432",
3
+ "version": "0.1.434",
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"