@yemi33/minions 0.1.681 → 0.1.682

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,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.681 (2026-04-09)
3
+ ## 0.1.682 (2026-04-09)
4
4
 
5
5
  ### Features
6
6
  - horizontal node chain pipeline visualization (TDD)
7
7
 
8
+ ### Fixes
9
+ - pipeline node chain overlap — truncate labels, remove old stageFlow
10
+
8
11
  ## 0.1.678 (2026-04-09)
9
12
 
10
13
  ### Fixes
@@ -196,8 +196,9 @@ function _buildNodeChain(stages, run, options) {
196
196
  if (i > 0) html += '<div class="pl-node-arrow">\u2192</div>';
197
197
 
198
198
  html += '<div class="pl-node">';
199
- html += '<div class="pl-node-box ' + cls + (isCondition ? ' condition' : '') + '" title="' + escHtml(s.id) + ': ' + st + '">';
200
- html += icon + ' ' + escHtml(s.title || s.id);
199
+ var label = compact ? (s.id || '').slice(0, 16) : (s.title || s.id || '').slice(0, 24);
200
+ html += '<div class="pl-node-box ' + cls + (isCondition ? ' condition' : '') + '" title="' + escHtml((s.title || s.id) + ': ' + st) + '">';
201
+ html += icon + ' ' + escHtml(label);
201
202
  if (isWait && s.duration) html += ' ' + escHtml(s.duration);
202
203
  html += '</div>';
203
204
 
@@ -299,7 +300,6 @@ function renderPipelines(pipelines) {
299
300
  (p.enabled === false ? '<span style="font-size:9px;color:var(--red)"' + (p._stopReason ? ' title="' + escHtml(p._stopReason) + '"' : '') + '>' + (p._stoppedBy ? 'AUTO-STOPPED' : 'DISABLED') + '</span>' : '') +
300
301
  '</div>' +
301
302
  '</div>' +
302
- '<div style="margin-top:6px;display:flex;gap:4px;align-items:center;flex-wrap:wrap">' + stageFlow + '</div>' +
303
303
  resourcesHtml +
304
304
  progressHtml +
305
305
  '</div>';
@@ -192,9 +192,9 @@
192
192
  .pl-prog-seg.pending { background: transparent; }
193
193
  @keyframes plSegPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
194
194
  .pl-progress-label { display: flex; gap: 8px; align-items: center; margin-top: 4px; font-size: 10px; }
195
- .pl-node-chain { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding: 8px 0; }
196
- .pl-node { display: flex; flex-direction: column; align-items: center; min-width: 80px; max-width: 130px; }
197
- .pl-node-box { padding: 5px 10px; border-radius: 8px; border: 2px solid var(--border); background: var(--surface2); text-align: center; font-size: 11px; transition: border-color 0.2s; white-space: nowrap; }
195
+ .pl-node-chain { display: flex; align-items: flex-start; gap: 2px; overflow-x: auto; padding: 8px 0; }
196
+ .pl-node { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
197
+ .pl-node-box { padding: 4px 8px; border-radius: 6px; border: 2px solid var(--border); background: var(--surface2); text-align: center; font-size: 10px; transition: border-color 0.2s; white-space: nowrap; }
198
198
  .pl-node-box.complete { border-color: var(--green); background: rgba(63,185,80,0.08); }
199
199
  .pl-node-box.running { border-color: var(--blue); animation: plSegPulse 1.5s ease-in-out infinite; }
200
200
  .pl-node-box.failed { border-color: var(--red); background: rgba(248,81,73,0.08); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.681",
3
+ "version": "0.1.682",
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"