@yemi33/minions 0.1.1566 → 0.1.1567
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 -4
- package/dashboard/js/render-plans.js +11 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1567 (2026-04-27)
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
-
|
|
5
|
+
### Other
|
|
6
|
+
- Clarify PRD delete toast
|
|
7
|
+
|
|
8
|
+
## 0.1.1565 (2026-04-27)
|
|
7
9
|
|
|
8
10
|
### Other
|
|
9
|
-
- test(dashboard): add unit tests for getMcpServers, _filterCcTabSessions, _getVersionCheckInterval, _parseWatchInterval, parsePinnedEntries (#1753)
|
|
10
11
|
- docs(sched-weekly-docs-cleanup-1776960000531): sync stale references with current source (#1750)
|
|
11
12
|
|
|
12
13
|
## 0.1.1564 (2026-04-27)
|
|
@@ -574,8 +574,12 @@ async function planApprove(file, btn) {
|
|
|
574
574
|
|
|
575
575
|
async function planDelete(file) {
|
|
576
576
|
_stopPlanPoll();
|
|
577
|
-
|
|
578
|
-
|
|
577
|
+
var isPrd = file.endsWith('.json');
|
|
578
|
+
var confirmMsg = isPrd
|
|
579
|
+
? 'Delete PRD "' + file + '"? This cannot be undone. The source plan will be kept.'
|
|
580
|
+
: 'Delete plan "' + file + '"? This cannot be undone.';
|
|
581
|
+
if (!confirm(confirmMsg)) return;
|
|
582
|
+
showToast('cmd-toast', isPrd ? 'PRD deleted' : 'Plan deleted', true);
|
|
579
583
|
markDeleted('plan:' + file);
|
|
580
584
|
try { closeModal(); } catch { /* may not be open */ }
|
|
581
585
|
if (window._lastPlans) renderPlans(window._lastPlans);
|
|
@@ -593,7 +597,11 @@ async function planDelete(file) {
|
|
|
593
597
|
showToast('cmd-toast', 'Delete failed: ' + (d.error || 'unknown'), false);
|
|
594
598
|
refresh(); // revert optimistic
|
|
595
599
|
}
|
|
596
|
-
} catch (e) {
|
|
600
|
+
} catch (e) {
|
|
601
|
+
clearDeleted('plan:' + file);
|
|
602
|
+
showToast('cmd-toast', 'Error: ' + e.message, false);
|
|
603
|
+
refresh();
|
|
604
|
+
}
|
|
597
605
|
}
|
|
598
606
|
|
|
599
607
|
async function planArchive(file, btn) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1567",
|
|
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"
|