@yemi33/minions 0.1.515 → 0.1.516

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.516 (2026-04-07)
4
+
5
+ ### Fixes
6
+ - graph view shows decomposed items as green with children listed
7
+
3
8
  ## 0.1.515 (2026-04-07)
4
9
 
5
10
  ### Features
@@ -326,7 +326,7 @@ function renderPrdProgress(prog) {
326
326
  });
327
327
 
328
328
  const statusColor = (s) => {
329
- if (s === 'done') return 'var(--green)';
329
+ if (s === 'done' || s === 'decomposed') return 'var(--green)';
330
330
  if (s === 'dispatched') return 'var(--yellow)';
331
331
  if (s === 'failed') return 'var(--red)';
332
332
  if (s === 'paused') return 'var(--muted)';
@@ -381,6 +381,20 @@ function renderPrdProgress(prog) {
381
381
  ((i.prs || []).length ? '<div style="margin-top:3px">' + (i.prs || []).map(function(pr) {
382
382
  return '<a href="' + escHtml(pr.url || '#') + '" target="_blank" rel="noopener" onclick="event.stopPropagation()" style="font-size:9px;color:var(--green);text-decoration:underline;cursor:pointer" title="' + escHtml(pr.title || '') + '">' + escHtml(pr.id) + '</a>';
383
383
  }).join(' ') + '</div>' : '') +
384
+ (i.status === 'decomposed' ? (function() {
385
+ var children = (window._lastWorkItems || []).filter(function(w) { return w.parent_id === i.id; });
386
+ if (!children.length) return '';
387
+ return '<div style="margin-top:4px;border-top:1px solid var(--border);padding-top:4px">' +
388
+ children.map(function(c) {
389
+ var cAgent = c.dispatched_to ? (agentData.find(function(a) { return a.id === c.dispatched_to; }) || {}) : null;
390
+ return '<div style="font-size:9px;display:flex;align-items:center;gap:4px;padding:1px 0">' +
391
+ statusBadge(c.status) +
392
+ '<span style="flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap">' + escHtml((c.title || '').replace('Implement: ', '').slice(0, 40)) + '</span>' +
393
+ (cAgent ? '<span style="font-size:8px;color:var(--muted)">' + (cAgent.emoji || '') + '</span>' : '') +
394
+ '</div>';
395
+ }).join('') +
396
+ '</div>';
397
+ })() : '') +
384
398
  '</div>';
385
399
  }
386
400
  html += '</div>';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.515",
3
+ "version": "0.1.516",
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"