@yemi33/minions 0.1.61 → 0.1.62
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 +28 -0
- package/dashboard/js/command-center.js +2 -0
- package/dashboard/js/command-history.js +2 -0
- package/dashboard/js/command-input.js +2 -0
- package/dashboard/js/command-parser.js +2 -0
- package/dashboard/js/detail-panel.js +2 -0
- package/dashboard/js/live-stream.js +2 -0
- package/dashboard/js/modal-qa.js +2 -0
- package/dashboard/js/modal.js +2 -0
- package/dashboard/js/refresh.js +2 -0
- package/dashboard/js/render-agents.js +2 -0
- package/dashboard/js/render-dispatch.js +2 -0
- package/dashboard/js/render-inbox.js +2 -0
- package/dashboard/js/render-kb.js +2 -0
- package/dashboard/js/render-other.js +2 -0
- package/dashboard/js/render-pinned.js +2 -0
- package/dashboard/js/render-plans.js +2 -0
- package/dashboard/js/render-prd.js +2 -0
- package/dashboard/js/render-prs.js +2 -0
- package/dashboard/js/render-schedules.js +2 -0
- package/dashboard/js/render-skills.js +2 -0
- package/dashboard/js/render-work-items.js +2 -0
- package/dashboard/js/settings.js +2 -0
- package/dashboard/js/state.js +2 -0
- package/dashboard/js/utils.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.62 (2026-03-30)
|
|
4
|
+
|
|
5
|
+
### Dashboard
|
|
6
|
+
- dashboard/js/command-center.js
|
|
7
|
+
- dashboard/js/command-history.js
|
|
8
|
+
- dashboard/js/command-input.js
|
|
9
|
+
- dashboard/js/command-parser.js
|
|
10
|
+
- dashboard/js/detail-panel.js
|
|
11
|
+
- dashboard/js/live-stream.js
|
|
12
|
+
- dashboard/js/modal-qa.js
|
|
13
|
+
- dashboard/js/modal.js
|
|
14
|
+
- dashboard/js/refresh.js
|
|
15
|
+
- dashboard/js/render-agents.js
|
|
16
|
+
- dashboard/js/render-dispatch.js
|
|
17
|
+
- dashboard/js/render-inbox.js
|
|
18
|
+
- dashboard/js/render-kb.js
|
|
19
|
+
- dashboard/js/render-other.js
|
|
20
|
+
- dashboard/js/render-pinned.js
|
|
21
|
+
- dashboard/js/render-plans.js
|
|
22
|
+
- dashboard/js/render-prd.js
|
|
23
|
+
- dashboard/js/render-prs.js
|
|
24
|
+
- dashboard/js/render-schedules.js
|
|
25
|
+
- dashboard/js/render-skills.js
|
|
26
|
+
- dashboard/js/render-work-items.js
|
|
27
|
+
- dashboard/js/settings.js
|
|
28
|
+
- dashboard/js/state.js
|
|
29
|
+
- dashboard/js/utils.js
|
|
30
|
+
|
|
3
31
|
## 0.1.61 (2026-03-30)
|
|
4
32
|
|
|
5
33
|
### Engine
|
|
@@ -378,3 +378,5 @@ async function ccExecuteAction(action) {
|
|
|
378
378
|
msgs.scrollTop = msgs.scrollHeight;
|
|
379
379
|
refresh();
|
|
380
380
|
}
|
|
381
|
+
|
|
382
|
+
window.MinionsCC = { toggleCommandCenter, ccNewSession, ccRestoreMessages, ccSaveState, ccUpdateSessionIndicator, ccAddMessage, ccSend, ccExecuteAction };
|
|
@@ -266,3 +266,5 @@ function cmdInsertPopupItem(id) {
|
|
|
266
266
|
cmdHidePopup();
|
|
267
267
|
cmdRenderMeta();
|
|
268
268
|
}
|
|
269
|
+
|
|
270
|
+
window.MinionsCmdInput = { cmdAutoResize, cmdUpdateHighlight, syncHighlightScroll, cmdInputChanged, cmdKeyDown, cmdSubmit, cmdRenderMeta, cmdShowMentions, cmdShowProjects, cmdHidePopup, cmdInsertPopupItem };
|
|
@@ -105,3 +105,5 @@ function renderDetailContent(detail, tab) {
|
|
|
105
105
|
el.innerHTML = '<div class="section">' + escHtml(detail.outputLog || 'No output log. The coordinator will save agent output here when tasks complete.') + '</div>';
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
+
|
|
109
|
+
window.MinionsDetail = { closeDetail, renderDetailTabs, switchTab, renderDetailContent };
|
package/dashboard/js/modal-qa.js
CHANGED
|
@@ -307,3 +307,5 @@ async function qaReplacePrd(planFile) {
|
|
|
307
307
|
const btn = document.getElementById('qa-generate-prd-btn');
|
|
308
308
|
if (btn) btn.innerHTML = '<span style="color:var(--orange);font-size:12px">Replacing PRD — old items paused, agent regenerating from revised plan.</span>';
|
|
309
309
|
}
|
|
310
|
+
|
|
311
|
+
window.MinionsQA = { showModalQa, modalAskAboutSelection, clearQaSelection, clearQaConversation, modalSend, qaNewPrd, qaReplacePrd };
|
package/dashboard/js/modal.js
CHANGED
|
@@ -129,3 +129,5 @@ function renderArchiveButtons(archives) {
|
|
|
129
129
|
'<button class="archive-btn" onclick="openArchive(' + i + ')">Archived: ' + escHtml(a.version) + ' (' + a.total + ' items)</button>'
|
|
130
130
|
).join(' ');
|
|
131
131
|
}
|
|
132
|
+
|
|
133
|
+
window.MinionsModal = { closeModal, copyModalContent, showNotifBadge, clearNotifBadge, restoreNotifBadges, findCardForFile, renderArchiveButtons };
|
package/dashboard/js/refresh.js
CHANGED
|
@@ -169,3 +169,5 @@ async function showErrorDetails(agentId, reason, task) {
|
|
|
169
169
|
document.getElementById('modal-body').textContent = 'Reason: ' + reason + '\n\n(Could not load agent output)';
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
+
|
|
173
|
+
window.MinionsDispatch = { renderEngineStatus, renderEngineAlert, renderDispatch, renderEngineLog, shortTime, showErrorDetails };
|
|
@@ -198,3 +198,5 @@ async function doPromoteToKB(name, category) {
|
|
|
198
198
|
}
|
|
199
199
|
} catch (e) { alert('Error: ' + e.message); }
|
|
200
200
|
}
|
|
201
|
+
|
|
202
|
+
window.MinionsInbox = { renderInbox, promoteToKB, renderNotes, openNotesModal, modalToggleEdit, modalSaveEdit, modalCancelEdit, deleteInboxItem, openInboxInExplorer, openQuickNoteModal, submitQuickNote, doPromoteToKB };
|
|
@@ -629,3 +629,5 @@ async function triggerVerify(file) {
|
|
|
629
629
|
}
|
|
630
630
|
} catch (e) { alert('Error: ' + e.message); }
|
|
631
631
|
}
|
|
632
|
+
|
|
633
|
+
window.MinionsPlans = { openCreatePlanModal, refreshPlans, derivePlanStatus, renderPlans, openArchivedPlansModal, qaDisablePrdButtons, showPlanVersionActions, qaJustSave, planExecute, planSubmitRevise, planShowRevise, planHideRevise, planView, planApprove, planDelete, planPause, planReject, planDiscuss, planOpenInDocChat, planRegeneratePRD, openVerifyGuide, triggerVerify };
|
|
@@ -716,3 +716,5 @@ function openArchive(i) {
|
|
|
716
716
|
document.getElementById('modal-body').style.whiteSpace = 'normal';
|
|
717
717
|
document.getElementById('modal').classList.add('open');
|
|
718
718
|
}
|
|
719
|
+
|
|
720
|
+
window.MinionsPrd = { renderPrd, renderPrdProgress, openArchivedPrdModal, showArchivedPrdDetail, prdItemEdit, prdItemSave, prdItemRemove, prdItemRequeue, prdRegenerate, openArchive };
|
|
@@ -396,3 +396,5 @@ function openAllWorkItems() {
|
|
|
396
396
|
document.getElementById('modal-body').style.whiteSpace = 'normal';
|
|
397
397
|
document.getElementById('modal').classList.add('open');
|
|
398
398
|
}
|
|
399
|
+
|
|
400
|
+
window.MinionsWork = { wiRow, renderWorkItems, editWorkItem, submitWorkItemEdit, deleteWorkItem, archiveWorkItem, toggleWorkItemArchive, retryWorkItem, wiPrev, wiNext, feedbackWorkItem, submitFeedback, openCreateWorkItemModal, openWorkItemDetail, openAllWorkItems };
|
package/dashboard/js/settings.js
CHANGED
package/dashboard/js/state.js
CHANGED
|
@@ -82,3 +82,5 @@ function rerenderPrdFromCache() {
|
|
|
82
82
|
if (!window._lastStatus || !window._lastStatus.prdProgress) return;
|
|
83
83
|
renderPrd(window._lastStatus.prd, window._lastStatus.prdProgress);
|
|
84
84
|
}
|
|
85
|
+
|
|
86
|
+
window.MinionsState = { getPageFromUrl, switchPage, getPrdRequeueState, setPrdRequeueState, clearPrdRequeueState, prunePrdRequeueState, rerenderPrdFromCache };
|
package/dashboard/js/utils.js
CHANGED
package/package.json
CHANGED