@yemi33/minions 0.1.918 → 0.1.920

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.918 (2026-04-13)
3
+ ## 0.1.920 (2026-04-13)
4
4
 
5
5
  ### Features
6
6
  - CC tab unread dot + reopened badge on work items
@@ -18,6 +18,8 @@
18
18
  - add red dot notification on CC tab when response completes (#934) (#946)
19
19
 
20
20
  ### Fixes
21
+ - optimistic archive hides both PRD and linked source plan simultaneously
22
+ - align CC tab unread dot to same position as working dot
21
23
  - pipeline artifact links use pushModalBack instead of setTimeout race (#993)
22
24
  - close unclosed code fences and lone backticks in renderMd (#991)
23
25
  - PRD item status stuck at dispatched when fix completes (#989)
@@ -601,6 +601,11 @@ async function planArchive(file, btn) {
601
601
  if (!confirm(confirmMsg)) return;
602
602
  _stopPlanPoll();
603
603
  markDeleted('plan:' + file);
604
+ // Also optimistically hide the linked source plan (server archives both)
605
+ if (isPrd) {
606
+ var linkedPlan = (window._lastPlans || []).find(function(p) { return p.file === file && p.sourcePlan; });
607
+ if (linkedPlan) markDeleted('plan:' + linkedPlan.sourcePlan);
608
+ }
604
609
  try { closeModal(); } catch { /* may not be open */ }
605
610
  showToast('cmd-toast', 'Archiving...', true);
606
611
  try {
@@ -630,6 +630,7 @@
630
630
  .cc-tab.working { border-color: var(--blue); }
631
631
  .cc-tab.working::before { content: ''; position: absolute; top: 3px; left: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); animation: pulse 1.5s infinite; }
632
632
  .cc-tab.working.active::before { background: var(--blue); }
633
+ .cc-tab .notif-badge.done { top: 3px; left: 5px; right: auto; width: 4px; height: 4px; }
633
634
  .cc-tab-close { flex-shrink: 0; margin-left: 4px; opacity: 0; cursor: pointer; font-size: 12px; line-height: 1; }
634
635
  .cc-tab:hover .cc-tab-close { opacity: 0.5; }
635
636
  .cc-tab-close:hover { opacity: 1; color: var(--red); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.918",
3
+ "version": "0.1.920",
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"