@yemi33/minions 0.1.903 → 0.1.904
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 +4 -1
- package/dashboard/js/command-center.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -662,7 +662,9 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
662
662
|
ccRenderTabBar();
|
|
663
663
|
try { clearInterval(phaseTimer); } catch { /* may not be defined if error before reader */ }
|
|
664
664
|
try { localStorage.removeItem('cc-sending'); } catch {}
|
|
665
|
-
|
|
665
|
+
// Show red dot badge on CC button when response completes while drawer is closed.
|
|
666
|
+
// Skip badge on user-initiated abort — they don't need notification for their own action.
|
|
667
|
+
if (!_ccOpen && !_wasAborted) showNotifBadge(document.getElementById('cc-toggle-btn'));
|
|
666
668
|
}
|
|
667
669
|
return _wasAborted;
|
|
668
670
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.904",
|
|
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"
|