@yemi33/minions 0.1.708 → 0.1.710
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 +7 -1
- package/dashboard/js/modal-qa.js +0 -5
- package/dashboard/js/render-plans.js +10 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.710 (2026-04-09)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- modal shows Execute for completed plans, missing status labels
|
|
7
|
+
|
|
8
|
+
## 0.1.709 (2026-04-09)
|
|
9
|
+
|
|
10
|
+
### Fixes
|
|
11
|
+
- remove auto-scroll on doc-chat session restore
|
|
6
12
|
- defer doc-chat scroll after display transition, update stale tests
|
|
7
13
|
|
|
8
14
|
### Other
|
package/dashboard/js/modal-qa.js
CHANGED
|
@@ -99,11 +99,6 @@ function _initQaSession() {
|
|
|
99
99
|
}
|
|
100
100
|
if (prior.filePath) _modalFilePath = prior.filePath;
|
|
101
101
|
_showThreadWrap();
|
|
102
|
-
// Defer scroll — container just transitioned from display:none, layout not yet computed
|
|
103
|
-
requestAnimationFrame(function() {
|
|
104
|
-
var thread = document.getElementById('modal-qa-thread');
|
|
105
|
-
if (thread) thread.scrollTop = thread.scrollHeight;
|
|
106
|
-
});
|
|
107
102
|
} else {
|
|
108
103
|
_qaHistory = [];
|
|
109
104
|
document.getElementById('modal-qa-thread').innerHTML = '';
|
|
@@ -442,7 +442,8 @@ function _renderPlanModal(normalizedFile, raw, lastMod) {
|
|
|
442
442
|
const effectiveStatus = cardPlan ? derivePlanStatus(cardPlan) : (linkedPrd ? derivePlanStatus(linkedPrd) : (planStatus || 'active'));
|
|
443
443
|
const prdFile = cardPlan?.file?.endsWith('.json') ? cardPlan.file : (linkedPrd?.file || '');
|
|
444
444
|
const isArchived = !!(cardPlan?.archived || linkedPrd?.archived);
|
|
445
|
-
const
|
|
445
|
+
const isCompleted = effectiveStatus === 'completed';
|
|
446
|
+
const isDraft = isMdPlan && !prdFile && !isCompleted;
|
|
446
447
|
const isNeedsAction = (effectiveStatus === 'awaiting-approval' || effectiveStatus === 'paused') && !isArchived;
|
|
447
448
|
|
|
448
449
|
const bs = 'font-size:10px;padding:2px 10px'; // button style
|
|
@@ -467,6 +468,14 @@ function _renderPlanModal(normalizedFile, raw, lastMod) {
|
|
|
467
468
|
if (effectiveStatus === 'dispatched' && prdFile && !isArchived) {
|
|
468
469
|
modalActions += '<button class="pr-pager-btn" style="' + bs + ';color:var(--yellow)" onclick="planPause(\'' + escHtml(prdFile) + '\',this)">Pause</button> ';
|
|
469
470
|
}
|
|
471
|
+
// Completed label
|
|
472
|
+
if (isCompleted && !isArchived) {
|
|
473
|
+
modalActions += '<span style="' + bs + ';color:var(--green);font-weight:600">Completed</span> ';
|
|
474
|
+
}
|
|
475
|
+
// In progress label
|
|
476
|
+
if (effectiveStatus === 'dispatched') {
|
|
477
|
+
modalActions += '<span style="' + bs + ';color:var(--blue)">In Progress</span> ';
|
|
478
|
+
}
|
|
470
479
|
// Verify / Verified badge
|
|
471
480
|
const modalVerifyWi = (window._lastWorkItems || []).find(w => w.itemType === 'verify' && w.sourcePlan === (prdFile || normalizedFile));
|
|
472
481
|
if (effectiveStatus === 'completed' && prdFile && !isArchived && !modalVerifyWi) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.710",
|
|
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"
|