@yemi33/minions 0.1.459 → 0.1.460

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.459 (2026-04-07)
3
+ ## 0.1.460 (2026-04-07)
4
4
 
5
5
  ### Fixes
6
+ - remove non-functional Discuss & Revise button from plan cards
6
7
  - steering no longer causes pending/active flip
7
8
 
8
9
  ## 0.1.458 (2026-04-07)
@@ -211,15 +211,7 @@ function renderPlans(plans) {
211
211
  const actionTarget = prdFile || p.file;
212
212
  actions = '<div class="plan-card-actions" onclick="event.stopPropagation()">' +
213
213
  '<button class="plan-btn approve" onclick="planApprove(\'' + escHtml(actionTarget) + '\')">Approve</button>' +
214
- '<button class="plan-btn" style="color:var(--blue);border-color:var(--blue)" onclick="planDiscuss(\'' + escHtml(p.file) + '\')">Discuss &amp; Revise</button>' +
215
214
  '<button class="plan-btn reject" onclick="planReject(\'' + escHtml(actionTarget) + '\')">Reject</button>' +
216
- '</div>' +
217
- '<div id="revise-input-' + escHtml(p.file).replace(/\./g, '-') + '" style="display:none">' +
218
- '<textarea class="plan-feedback-input" placeholder="What should be changed? Be specific..." id="revise-feedback-' + escHtml(p.file).replace(/\./g, '-') + '"></textarea>' +
219
- '<div class="plan-card-actions" style="margin-top:4px">' +
220
- '<button class="plan-btn revise" onclick="planSubmitRevise(\'' + escHtml(p.file) + '\')">Submit Revision Request</button>' +
221
- '<button class="plan-btn" onclick="planHideRevise(\'' + escHtml(p.file) + '\')">Cancel</button>' +
222
- '</div>' +
223
215
  '</div>';
224
216
  } else if (isRevision) {
225
217
  actions = '<div class="plan-card-meta" style="margin-top:6px;color:var(--purple,#a855f7)">Revision in progress: ' + escHtml((p.revisionFeedback || '').slice(0, 100)) + '</div>';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.459",
3
+ "version": "0.1.460",
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"