@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 CHANGED
@@ -1,6 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.903 (2026-04-12)
3
+ ## 0.1.904 (2026-04-12)
4
+
5
+ ### Features
6
+ - add red dot notification on CC tab when response completes (#934) (#946)
4
7
 
5
8
  ### Fixes
6
9
  - make KB sweep endpoint async with status polling (#933)
@@ -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
- if (!_ccOpen) showNotifBadge(document.getElementById('cc-toggle-btn'));
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.903",
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"