@yemi33/minions 0.1.706 → 0.1.707
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 +5 -0
- package/dashboard/js/render-plans.js +0 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -434,9 +434,6 @@ function _renderPlanModal(normalizedFile, raw, lastMod) {
|
|
|
434
434
|
const isMdPlan = normalizedFile.endsWith('.md');
|
|
435
435
|
let planStatus = '';
|
|
436
436
|
try { if (normalizedFile.endsWith('.json')) planStatus = JSON.parse(raw).status || ''; } catch {}
|
|
437
|
-
const isActive = planStatus === 'approved' || planStatus === 'active';
|
|
438
|
-
const isPaused = planStatus === 'awaiting-approval' || planStatus === 'paused';
|
|
439
|
-
const wi = window._lastWorkItems || [];
|
|
440
437
|
// Modal buttons mirror card logic — derive effectiveStatus the same way
|
|
441
438
|
const allPlans = window._lastStatus?.plans || [];
|
|
442
439
|
const cardPlan = allPlans.find(p => p.file === normalizedFile || p.sourcePlan === normalizedFile || (p.file?.endsWith('.json') && p.file === normalizedFile));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.707",
|
|
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"
|