@yemi33/minions 0.1.835 → 0.1.836
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 +2 -1
- package/dashboard.js +3 -3
- package/package.json +1 -1
- package/playbooks/plan-to-prd.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.836 (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
|
+
- use structured marker for diff-aware PRD update detection
|
|
9
10
|
- match playbook trigger phrase for diff-aware PRD updates
|
|
10
11
|
- engine only flags stale on plan revision, never auto-regenerates
|
|
11
12
|
- only 'updated' re-opens done work items, remove 'planned' status
|
package/dashboard.js
CHANGED
|
@@ -2250,10 +2250,10 @@ If nothing to do: { "duplicates": [], "reclassify": [], "remove": [] }`;
|
|
|
2250
2250
|
diffAwareQueued = shared.queuePlanToPrd({
|
|
2251
2251
|
planFile: plan.source_plan, prdFile: body.file,
|
|
2252
2252
|
title: `Update PRD from revised plan: ${plan.source_plan}`,
|
|
2253
|
-
description: `
|
|
2254
|
-
`Source plan was revised.
|
|
2253
|
+
description: `mode: diff-aware-update\nPlan file: plans/${plan.source_plan}\nPRD file: prd/${body.file}\n\n` +
|
|
2254
|
+
`Source plan was revised. Read the existing PRD and compare against the updated plan.\n\n` +
|
|
2255
2255
|
`**Existing implementation state:**\n${implContext}\n\n` +
|
|
2256
|
-
`Follow the "Updating an Existing PRD" section in the playbook.
|
|
2256
|
+
`Follow the "Updating an Existing PRD" section in the playbook. Items whose requirements changed MUST be set to status "updated" (not "done") so the engine re-opens them.`,
|
|
2257
2257
|
project: targetProject.name, createdBy: 'dashboard:plan-resume',
|
|
2258
2258
|
extra: { _existingPrdFile: body.file },
|
|
2259
2259
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.836",
|
|
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"
|
package/playbooks/plan-to-prd.md
CHANGED
|
@@ -93,7 +93,7 @@ Rules for items:
|
|
|
93
93
|
|
|
94
94
|
## Updating an Existing PRD
|
|
95
95
|
|
|
96
|
-
If the task description
|
|
96
|
+
If the task description contains `mode: diff-aware-update`, you are updating an existing PRD, not creating one from scratch. The plan was revised and you need to produce an updated PRD that reflects the changes while preserving existing work.
|
|
97
97
|
|
|
98
98
|
**Rules for diff-aware updates:**
|
|
99
99
|
- **Read the existing PRD file first** — it's at `{{team_root}}/prd/{{prd_filename}}`
|