@yemi33/minions 0.1.919 → 0.1.920
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/render-plans.js +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.920 (2026-04-13)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- CC tab unread dot + reopened badge on work items
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
- add red dot notification on CC tab when response completes (#934) (#946)
|
|
19
19
|
|
|
20
20
|
### Fixes
|
|
21
|
+
- optimistic archive hides both PRD and linked source plan simultaneously
|
|
21
22
|
- align CC tab unread dot to same position as working dot
|
|
22
23
|
- pipeline artifact links use pushModalBack instead of setTimeout race (#993)
|
|
23
24
|
- close unclosed code fences and lone backticks in renderMd (#991)
|
|
@@ -601,6 +601,11 @@ async function planArchive(file, btn) {
|
|
|
601
601
|
if (!confirm(confirmMsg)) return;
|
|
602
602
|
_stopPlanPoll();
|
|
603
603
|
markDeleted('plan:' + file);
|
|
604
|
+
// Also optimistically hide the linked source plan (server archives both)
|
|
605
|
+
if (isPrd) {
|
|
606
|
+
var linkedPlan = (window._lastPlans || []).find(function(p) { return p.file === file && p.sourcePlan; });
|
|
607
|
+
if (linkedPlan) markDeleted('plan:' + linkedPlan.sourcePlan);
|
|
608
|
+
}
|
|
604
609
|
try { closeModal(); } catch { /* may not be open */ }
|
|
605
610
|
showToast('cmd-toast', 'Archiving...', true);
|
|
606
611
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.920",
|
|
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"
|