@yemi33/minions 0.1.675 → 0.1.677

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,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.677 (2026-04-09)
4
+
5
+ ### Fixes
6
+ - abort button shows 'Aborting...' then becomes 'Run Now'
7
+
8
+ ## 0.1.676 (2026-04-09)
9
+
10
+ ### Fixes
11
+ - remove output log pill — raw stream-json not human-readable
12
+
3
13
  ## 0.1.675 (2026-04-09)
4
14
 
5
15
  ### Fixes
@@ -374,7 +374,18 @@ async function _abortPipeline(id, btn) {
374
374
  if (res.ok) {
375
375
  var d = await res.json().catch(function() { return {}; });
376
376
  showToast('cmd-toast', 'Pipeline aborted — ' + (d.cancelledWorkItems || 0) + ' work items cancelled', true);
377
- if (btn) { btn.textContent = '\u2713 Aborted'; btn.style.color = 'var(--red)'; }
377
+ // Replace abort button with Run Now
378
+ if (btn) {
379
+ btn.textContent = 'Run Now';
380
+ btn.style.color = 'var(--green)';
381
+ btn.style.borderColor = 'var(--green)';
382
+ btn.style.pointerEvents = '';
383
+ btn.style.opacity = '';
384
+ btn.onclick = function() { _triggerPipeline(id, btn); };
385
+ // Remove the retrigger button next to it (no longer needed)
386
+ var next = btn.nextElementSibling;
387
+ if (next && next.textContent.trim() === 'Retrigger') next.remove();
388
+ }
378
389
  refresh();
379
390
  openPipelineDetail(id);
380
391
  } else { var d = await res.json().catch(function() { return {}; }); alert('Abort failed: ' + (d.error || 'unknown')); if (btn) { btn.textContent = 'Abort'; btn.style.pointerEvents = ''; btn.style.opacity = ''; } }
@@ -451,7 +451,7 @@ function openWorkItemDetail(id) {
451
451
  var arts = item._artifacts || {};
452
452
  var artPills = '';
453
453
  var pillStyle = 'display:inline-flex;align-items:center;gap:3px;padding:2px 8px;border-radius:10px;font-size:10px;cursor:pointer;background:var(--surface2);border:1px solid var(--border);color:var(--text)';
454
- if (arts.outputLog) artPills += '<span onclick="viewAgentOutput(\'' + escHtml(arts.outputLog) + '\')" style="' + pillStyle + '">📄 Output Log</span> ';
454
+ // Output log pill removed raw stream-json output is not human-readable
455
455
  if (arts.branch) artPills += '<span style="' + pillStyle + ';cursor:default">🌿 ' + escHtml(arts.branch) + '</span> ';
456
456
  if (arts.plan) artPills += '<span onclick="planView(\'' + escHtml(arts.plan) + '\')" style="' + pillStyle + '">📋 Plan</span> ';
457
457
  if (arts.prd) artPills += '<span onclick="planView(\'' + escHtml(arts.prd) + '\')" style="' + pillStyle + '">📄 PRD</span> ';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.675",
3
+ "version": "0.1.677",
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"