@yemi33/minions 0.1.746 → 0.1.747

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.746 (2026-04-09)
3
+ ## 0.1.747 (2026-04-09)
4
4
 
5
5
  ### Features
6
6
  - CC multi-tab conversations with session resume
7
7
 
8
8
  ### Fixes
9
+ - clear stale sessionId on resume failure, folder-style tab UI
9
10
  - CC tabs use per-tab sessions, not shared global session
10
11
 
11
12
  ## 0.1.744 (2026-04-09)
@@ -500,9 +500,9 @@ async function _ccDoSend(message, skipUserMsg) {
500
500
  var ccElapsed = Math.round((Date.now() - ccStartTime) / 1000);
501
501
  var rendered = renderMd(evt.text || streamedText || '');
502
502
  ccAddMessage('assistant', rendered + '<div style="font-size:9px;color:var(--muted);margin-top:6px;display:flex;justify-content:flex-end;padding-right:30px">' + ccElapsed + 's</div>');
503
- if (evt.sessionId) {
503
+ if (evt.sessionId !== undefined) {
504
504
  var currentTab = _ccActiveTab();
505
- if (currentTab) { currentTab.sessionId = evt.sessionId; }
505
+ if (currentTab) { currentTab.sessionId = evt.sessionId || null; }
506
506
  ccSaveState(); ccUpdateSessionIndicator();
507
507
  }
508
508
  if (evt.actions && evt.actions.length > 0) {
@@ -530,9 +530,9 @@ async function _ccDoSend(message, skipUserMsg) {
530
530
  var ccElapsed2 = Math.round((Date.now() - ccStartTime) / 1000);
531
531
  var rendered2 = renderMd(revt.text || streamedText || '');
532
532
  ccAddMessage('assistant', rendered2 + '<div style="font-size:9px;color:var(--muted);margin-top:6px;display:flex;justify-content:flex-end;padding-right:30px">' + ccElapsed2 + 's</div>');
533
- if (revt.sessionId) {
533
+ if (revt.sessionId !== undefined) {
534
534
  var currentTab2 = _ccActiveTab();
535
- if (currentTab2) { currentTab2.sessionId = revt.sessionId; }
535
+ if (currentTab2) { currentTab2.sessionId = revt.sessionId || null; }
536
536
  ccSaveState(); ccUpdateSessionIndicator();
537
537
  }
538
538
  if (revt.actions && revt.actions.length > 0) {
@@ -621,9 +621,10 @@
621
621
  @keyframes notifPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
622
622
 
623
623
  /* Command Center tab bar */
624
- .cc-tab { padding: 2px 8px; font-size: 10px; border: 1px solid var(--border); border-radius: 4px; background: var(--surface2); color: var(--muted); cursor: pointer; white-space: nowrap; max-width: 120px; overflow: hidden; text-overflow: ellipsis; display: inline-flex; align-items: center; gap: 2px; flex-shrink: 0; }
625
- .cc-tab.active { color: var(--blue); border-color: var(--blue); background: rgba(56,139,253,0.1); }
626
- .cc-tab-close { margin-left: 4px; opacity: 0.5; cursor: pointer; font-size: 12px; line-height: 1; }
624
+ .cc-tab { padding: 4px 10px; font-size: 10px; border: 1px solid var(--border); border-bottom: none; border-radius: 6px 6px 0 0; background: var(--surface2); color: var(--muted); cursor: pointer; white-space: nowrap; max-width: 140px; overflow: hidden; text-overflow: ellipsis; display: inline-flex; align-items: center; gap: 2px; flex-shrink: 0; margin-bottom: -1px; position: relative; }
625
+ .cc-tab.active { color: var(--text); background: var(--bg); border-color: var(--border); z-index: 1; font-weight: 600; }
626
+ .cc-tab-close { margin-left: 4px; opacity: 0; cursor: pointer; font-size: 12px; line-height: 1; }
627
+ .cc-tab:hover .cc-tab-close { opacity: 0.5; }
627
628
  .cc-tab-close:hover { opacity: 1; color: var(--red); }
628
629
 
629
630
  /* Command Center resize handle */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.746",
3
+ "version": "0.1.747",
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"