@yemi33/minions 0.1.453 → 0.1.454
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 +6 -2
- package/dashboard/js/command-center.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.454 (2026-04-07)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
- CC network error shows Reload Page button for guaranteed recovery
|
|
7
|
+
|
|
8
|
+
## 0.1.452 (2026-04-07)
|
|
4
9
|
|
|
5
10
|
### Features
|
|
6
11
|
- notification dot on Notes & KB sidebar when sweep completes/fails
|
|
7
12
|
|
|
8
13
|
### Fixes
|
|
9
|
-
- wrap inbox writes in try-catch on both meeting conclusion paths
|
|
10
14
|
- remove duplicate retry logic causing dispatch double-queueing
|
|
11
15
|
- plan archive/unarchive now optimistic — immediate UI feedback
|
|
12
16
|
- meeting conclude timeout synthesizes conclusion instead of null
|
|
@@ -327,8 +327,9 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
327
327
|
const retryId = 'cc-retry-' + Date.now();
|
|
328
328
|
const isNetworkError = e.message === 'Failed to fetch' || e.message.includes('NetworkError');
|
|
329
329
|
ccAddMessage('assistant', '<span style="color:var(--red)">Error: ' + escHtml(e.message) + '</span>' +
|
|
330
|
-
(isNetworkError ? '<div style="font-size:10px;color:var(--muted);margin-top:4px">Dashboard
|
|
330
|
+
(isNetworkError ? '<div style="font-size:10px;color:var(--muted);margin-top:4px">Dashboard connection lost. Reload the page to reconnect.</div>' : '') +
|
|
331
331
|
'<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>' +
|
|
332
|
+
(isNetworkError ? ' <button onclick="location.reload()" style="margin-top:6px;padding:4px 12px;background:var(--orange);color:#fff;border:none;border-radius:4px;cursor:pointer;font-size:11px">Reload Page</button>' : '') +
|
|
332
333
|
' <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>');
|
|
333
334
|
}
|
|
334
335
|
} finally {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.454",
|
|
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"
|