@yemi33/minions 0.1.747 → 0.1.748

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.747 (2026-04-09)
3
+ ## 0.1.748 (2026-04-09)
4
4
 
5
5
  ### Features
6
6
  - CC multi-tab conversations with session resume
7
7
 
8
8
  ### Fixes
9
+ - move + button after tabs, style as folder tab
9
10
  - clear stale sessionId on resume failure, folder-style tab UI
10
11
  - CC tabs use per-tab sessions, not shared global session
11
12
 
@@ -209,7 +209,7 @@ function ccShowAllConversations() {
209
209
  function ccRenderTabBar() {
210
210
  var bar = document.getElementById('cc-tab-bar');
211
211
  if (!bar) return;
212
- var html = '<button onclick="ccNewTab()" style="background:none;border:1px solid var(--border);color:var(--blue);font-size:11px;padding:2px 8px;border-radius:4px;cursor:pointer;white-space:nowrap;flex-shrink:0" title="New tab">+</button>';
212
+ var html = '';
213
213
  for (var i = 0; i < _ccTabs.length; i++) {
214
214
  var t = _ccTabs[i];
215
215
  var isActive = t.id === _ccActiveTabId;
@@ -218,7 +218,8 @@ function ccRenderTabBar() {
218
218
  html += '<span class="cc-tab-close" onclick="event.stopPropagation();ccCloseTab(\'' + t.id + '\')">&times;</span>';
219
219
  html += '</div>';
220
220
  }
221
- html += '<button id="cc-all-btn" onclick="ccShowAllConversations()" style="background:none;border:1px solid var(--border);color:var(--muted);font-size:11px;padding:2px 8px;border-radius:4px;cursor:pointer;white-space:nowrap;flex-shrink:0;margin-left:auto" title="All conversations">&#x25BC;</button>';
221
+ html += '<div class="cc-tab" onclick="ccNewTab()" title="New tab" style="color:var(--muted);padding:4px 8px">+</div>';
222
+ html += '<button id="cc-all-btn" onclick="ccShowAllConversations()" style="background:none;border:none;color:var(--muted);font-size:11px;padding:4px 6px;cursor:pointer;white-space:nowrap;flex-shrink:0;margin-left:auto" title="All conversations">&#x25BC;</button>';
222
223
  bar.innerHTML = html;
223
224
  }
224
225
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.747",
3
+ "version": "0.1.748",
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"