@yemi33/minions 0.1.826 → 0.1.827

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,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.826 (2026-04-11)
3
+ ## 0.1.827 (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
+ - hide plan card action buttons when stale banner is showing
9
10
  - hide conflicting action buttons when stale PRD banner is showing
10
11
  - diff-aware plan-to-prd triggered by Resume, not auto-dispatch
11
12
 
@@ -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.827",
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"