@yemi33/minions 0.1.882 → 0.1.883
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/command-center.js +2 -2
- package/dashboard.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.883 (2026-04-11)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- add 13 missing CC action types for full dashboard parity
|
|
7
7
|
|
|
8
8
|
### Fixes
|
|
9
|
+
- regenerate-plan now dispatches diff-aware plan-to-prd agent
|
|
9
10
|
- suppress false [steering-failed] banner when agent responded (closes #894) (#896)
|
|
10
11
|
- delete .backup sidecar when archiving PRD
|
|
11
12
|
- CC action bugs + security guard on generic fallback
|
|
@@ -1072,8 +1072,8 @@ async function ccExecuteAction(action, targetTabId) {
|
|
|
1072
1072
|
break;
|
|
1073
1073
|
}
|
|
1074
1074
|
case 'regenerate-plan': {
|
|
1075
|
-
await _ccFetch('/api/plans/
|
|
1076
|
-
status.innerHTML = '✓
|
|
1075
|
+
await _ccFetch('/api/plans/approve', { file: action.file, forceRegen: true });
|
|
1076
|
+
status.innerHTML = '✓ PRD regeneration queued: <strong>' + escHtml(action.file) + '</strong>';
|
|
1077
1077
|
status.style.color = 'var(--green)';
|
|
1078
1078
|
wakeEngine();
|
|
1079
1079
|
break;
|
package/dashboard.js
CHANGED
|
@@ -2292,7 +2292,7 @@ If nothing to do: { "duplicates": [], "reclassify": [], "remove": [] }`;
|
|
|
2292
2292
|
// Diff-aware PRD update: if plan was stale (source .md revised), dispatch plan-to-prd
|
|
2293
2293
|
// to compare the revised plan against existing PRD and produce an updated version
|
|
2294
2294
|
let diffAwareQueued = false;
|
|
2295
|
-
if (plan.source_plan && plan.missing_features && wasStale && !body.skipRegen) {
|
|
2295
|
+
if (plan.source_plan && plan.missing_features && (wasStale || body.forceRegen) && !body.skipRegen) {
|
|
2296
2296
|
const config = queries.getConfig();
|
|
2297
2297
|
const allWorkItems = queries.getWorkItems(config);
|
|
2298
2298
|
const planWis = allWorkItems.filter(w => w.sourcePlan === body.file && w.itemType !== 'pr' && w.itemType !== 'verify');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.883",
|
|
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"
|