@yemi33/minions 0.1.834 → 0.1.835

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.834 (2026-04-11)
3
+ ## 0.1.835 (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
+ - match playbook trigger phrase for diff-aware PRD updates
9
10
  - engine only flags stale on plan revision, never auto-regenerates
10
11
  - only 'updated' re-opens done work items, remove 'planned' status
11
12
  - revert doc-chat MAX_HEIGHT to 500px
package/dashboard.js CHANGED
@@ -2251,14 +2251,9 @@ If nothing to do: { "duplicates": [], "reclassify": [], "remove": [] }`;
2251
2251
  planFile: plan.source_plan, prdFile: body.file,
2252
2252
  title: `Update PRD from revised plan: ${plan.source_plan}`,
2253
2253
  description: `Plan file: plans/${plan.source_plan}\nPRD file: prd/${body.file}\n\n` +
2254
- `Source plan was revised. Compare the updated plan against existing PRD and produce an updated version.\n\n` +
2255
- `**Current PRD implementation state:**\n${implContext}\n\n` +
2256
- `**Rules for updating:**\n` +
2257
- `- Items that are done and unchanged in the plan → keep status "done" (preserve their ID)\n` +
2258
- `- Items that are done but modified in the plan (new requirements) → set status "updated" (engine will re-open)\n` +
2259
- `- New items in the plan → set status "missing" (engine will materialize)\n` +
2260
- `- Items removed from the plan → drop from PRD (engine will cancel pending WIs)\n` +
2261
- `- Preserve all existing item IDs for unchanged/modified items — do NOT generate new IDs for them`,
2254
+ `Source plan was revised. This is a diff-aware update — read the existing PRD and compare against the updated plan.\n\n` +
2255
+ `**Existing implementation state:**\n${implContext}\n\n` +
2256
+ `Follow the "Updating an Existing PRD" section in the playbook. Key: items whose requirements changed must be set to status "updated" (not "done") so the engine re-opens them.`,
2262
2257
  project: targetProject.name, createdBy: 'dashboard:plan-resume',
2263
2258
  extra: { _existingPrdFile: body.file },
2264
2259
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.834",
3
+ "version": "0.1.835",
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"