@yemi33/minions 0.1.822 → 0.1.823
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 -2
- package/dashboard.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.823 (2026-04-11)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- add resume-plan CC action for diff-aware plan updates
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
- cap review→fix cycles at evalMaxIterations (default 3)
|
|
19
19
|
|
|
20
20
|
### Fixes
|
|
21
|
+
- clear planStale on approve/resume so materialization proceeds
|
|
21
22
|
- doc-chat resize cap raised, modal overflow + flex body layout
|
|
22
23
|
- prevent duplicate verify WIs per PRD, re-open on modified plan
|
|
23
24
|
- strip ===ACTIONS=== server-side in streaming chunks (not client)
|
|
@@ -37,7 +38,6 @@
|
|
|
37
38
|
- allow PRD item retry when work item is missing (closes #781) (#807)
|
|
38
39
|
- handle force-pushed dep branches on retry (closes #738) (#806)
|
|
39
40
|
- project-scoped skill work items instruct wrong file path format (closes #790) (#804)
|
|
40
|
-
- move ignoredAuthors construction outside inner comment loop (ADO)
|
|
41
41
|
|
|
42
42
|
### Other
|
|
43
43
|
- docs: diff-aware PRD update playbook + prioritize team memory in shared rules
|
package/dashboard.js
CHANGED
|
@@ -961,6 +961,7 @@ const server = http.createServer(async (req, res) => {
|
|
|
961
961
|
if (!plan) return jsonReply(res, 500, { error: 'Could not parse PRD file' });
|
|
962
962
|
plan.status = 'approved';
|
|
963
963
|
delete plan.completedAt;
|
|
964
|
+
delete plan.planStale;
|
|
964
965
|
safeWrite(activePath, plan);
|
|
965
966
|
}
|
|
966
967
|
|
|
@@ -2186,7 +2187,8 @@ If nothing to do: { "duplicates": [], "reclassify": [], "remove": [] }`;
|
|
|
2186
2187
|
plan.approvedAt = new Date().toISOString();
|
|
2187
2188
|
plan.approvedBy = body.approvedBy || os.userInfo().username;
|
|
2188
2189
|
delete plan.pausedAt;
|
|
2189
|
-
delete plan.
|
|
2190
|
+
delete plan.planStale;
|
|
2191
|
+
delete plan._completionNotified;
|
|
2190
2192
|
safeWrite(planPath, plan);
|
|
2191
2193
|
|
|
2192
2194
|
// Resume paused work items across all projects
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.823",
|
|
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"
|