@yemi33/minions 0.1.826 → 0.1.828

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,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.826 (2026-04-11)
3
+ ## 0.1.828 (2026-04-11)
4
4
 
5
5
  ### Features
6
6
  - stale PRD shows Regenerate PRD + Resume as-is buttons
7
7
 
8
8
  ### Fixes
9
+ - revert doc-chat MAX_HEIGHT to 500px
10
+ - hide plan card action buttons when stale banner is showing
9
11
  - hide conflicting action buttons when stale PRD banner is showing
10
12
  - diff-aware plan-to-prd triggered by Resume, not auto-dispatch
11
13
 
@@ -377,7 +377,7 @@ function _showThreadWrap() {
377
377
  var _dragging = false, _startY = 0, _startH = 0, _thread = null;
378
378
  var COLLAPSE_THRESHOLD = 40;
379
379
  var MIN_HEIGHT = 60;
380
- var MAX_HEIGHT = 2000; // effectively uncapped — modal's own max-height constrains it
380
+ var MAX_HEIGHT = 500;
381
381
 
382
382
  document.addEventListener('pointerdown', function(e) {
383
383
  var handle = e.target.closest('#qa-resize-handle');
@@ -210,8 +210,10 @@ function renderPlans(plans) {
210
210
  const isDraft = p.format === 'draft' && !isCompleted;
211
211
  // For .md drafts: show Execute only if no PRD exists yet (not already executed)
212
212
 
213
+ const isStale = p.planStale && !isArchived;
214
+
213
215
  let actions = '';
214
- if (needsAction) {
216
+ if (needsAction && !isStale) {
215
217
  const actionTarget = prdFile || p.file;
216
218
  // For awaiting-approval: show Execute (re-generate PRD from updated plan) + Approve (use current PRD as-is)
217
219
  if (effectiveStatus === 'awaiting-approval' && isDraft && prdFile) {
package/dashboard.js CHANGED
@@ -2074,6 +2074,7 @@ If nothing to do: { "duplicates": [], "reclassify": [], "remove": [] }`;
2074
2074
  sourcePlan: plan.source_plan || null,
2075
2075
  archiveReady: plan._archiveReady || false,
2076
2076
  archiveReadyAt: plan._archiveReadyAt || null,
2077
+ planStale: plan.planStale || false,
2077
2078
  });
2078
2079
  } catch { /* JSON parse fallback */ }
2079
2080
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.826",
3
+ "version": "0.1.828",
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"