@yemi33/minions 0.1.135 → 0.1.137
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 +22 -0
- package/dashboard/js/refresh.js +3 -0
- package/dashboard/pages/engine.html +1 -1
- package/dashboard/pages/home.html +1 -1
- package/dashboard/pages/inbox.html +1 -1
- package/dashboard/pages/meetings.html +1 -0
- package/dashboard/pages/pipelines.html +1 -0
- package/dashboard/pages/plans.html +2 -1
- package/dashboard/pages/prs.html +1 -0
- package/dashboard/pages/schedule.html +1 -0
- package/dashboard/pages/work.html +1 -0
- package/dashboard.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.137 (2026-04-01)
|
|
4
|
+
|
|
5
|
+
### Dashboard
|
|
6
|
+
- dashboard.js
|
|
7
|
+
- dashboard/js/refresh.js
|
|
8
|
+
- dashboard/pages/inbox.html
|
|
9
|
+
- dashboard/pages/pipelines.html
|
|
10
|
+
|
|
11
|
+
## 0.1.136 (2026-04-01)
|
|
12
|
+
|
|
13
|
+
### Dashboard
|
|
14
|
+
- dashboard/pages/engine.html
|
|
15
|
+
- dashboard/pages/home.html
|
|
16
|
+
- dashboard/pages/meetings.html
|
|
17
|
+
- dashboard/pages/plans.html
|
|
18
|
+
- dashboard/pages/prs.html
|
|
19
|
+
- dashboard/pages/schedule.html
|
|
20
|
+
- dashboard/pages/work.html
|
|
21
|
+
|
|
22
|
+
### Other
|
|
23
|
+
- test/unit.test.js
|
|
24
|
+
|
|
3
25
|
## 0.1.135 (2026-04-01)
|
|
4
26
|
|
|
5
27
|
### Dashboard
|
package/dashboard/js/refresh.js
CHANGED
|
@@ -51,6 +51,9 @@ function _processStatusUpdate(data) {
|
|
|
51
51
|
if (autoEl) autoEl.innerHTML = data.autoMode?.approvePlans
|
|
52
52
|
? '<span style="font-size:9px;font-weight:600;padding:1px 6px;border-radius:3px;background:rgba(63,185,80,0.15);color:var(--green);border:1px solid rgba(63,185,80,0.3)">AUTO-APPROVE</span>'
|
|
53
53
|
: '';
|
|
54
|
+
// Inbox consolidation threshold from config
|
|
55
|
+
const threshEl = document.getElementById('inbox-threshold');
|
|
56
|
+
if (threshEl && data.autoMode?.inboxThreshold) threshEl.textContent = data.autoMode.inboxThreshold;
|
|
54
57
|
renderPrs(data.pullRequests || []);
|
|
55
58
|
renderArchiveButtons(data.archivedPrds || []);
|
|
56
59
|
renderEngineStatus(data.engine);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<section>
|
|
2
|
-
<h2>Engine Log</h2>
|
|
2
|
+
<h2>Engine Log <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">tick-by-tick audit trail of engine operations</span></h2>
|
|
3
3
|
<div class="log-list" id="engine-log">No log entries yet.</div>
|
|
4
4
|
</section>
|
|
5
5
|
<section>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<div id="pinned-content"><p class="empty">No pinned notes.</p></div>
|
|
26
26
|
</section>
|
|
27
27
|
<section>
|
|
28
|
-
<h2>Dispatch Queue</h2>
|
|
28
|
+
<h2>Dispatch Queue <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">agents being assigned and completing tasks</span></h2>
|
|
29
29
|
<div class="dispatch-stats" id="dispatch-stats"></div>
|
|
30
30
|
<div id="dispatch-active"></div>
|
|
31
31
|
<div id="dispatch-pending"></div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<section>
|
|
2
|
-
<h2>Notes Inbox <span class="count" id="inbox-count">0</span> <button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openQuickNoteModal()">+ Note</button> <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">auto-consolidates at 3 notes</span></h2>
|
|
2
|
+
<h2>Notes Inbox <span class="count" id="inbox-count">0</span> <button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openQuickNoteModal()">+ Note</button> <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">auto-consolidates at <span id="inbox-threshold">3</span> notes</span></h2>
|
|
3
3
|
<div class="inbox-list" id="inbox-list">Loading...</div>
|
|
4
4
|
</section>
|
|
5
5
|
<section>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<section>
|
|
2
2
|
<h2>Team Meetings <span class="count" id="meetings-count">0</span>
|
|
3
3
|
<button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openCreateMeetingModal()">+ New Meeting</button>
|
|
4
|
+
<span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">multi-round agent discussions — investigate, debate, conclude</span>
|
|
4
5
|
</h2>
|
|
5
6
|
<div id="meetings-content"><p class="empty">No meetings yet. Start one to have agents investigate, debate, and conclude on a topic.</p></div>
|
|
6
7
|
</section>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<section>
|
|
2
2
|
<h2>Pipelines <span class="count" id="pipelines-count">0</span>
|
|
3
3
|
<button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openCreatePipelineModal()">+ New Pipeline</button>
|
|
4
|
+
<span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">chain stages like audit → meeting → plan → merge</span>
|
|
4
5
|
</h2>
|
|
5
6
|
<div id="pipelines-content"><p class="empty">No pipelines yet. Create one to chain stages like audit → meeting → plan → merge.</p></div>
|
|
6
7
|
</section>
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<section>
|
|
2
2
|
<h2>Plans <span class="count" id="plans-count">0</span>
|
|
3
3
|
<button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openCreatePlanModal()">+ New Plan</button>
|
|
4
|
+
<span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">create via CC or + New Plan, then execute to generate a PRD</span>
|
|
4
5
|
</h2>
|
|
5
|
-
<div id="plans-list"><p class="empty">No plans yet.
|
|
6
|
+
<div id="plans-list"><p class="empty">No plans yet. Create one via the command center or click + New Plan.</p></div>
|
|
6
7
|
</section>
|
|
7
8
|
<section class="prd-panel" id="prd-section">
|
|
8
9
|
<h2>PRD <span class="count" id="prd-progress-count">0%</span> <span id="prd-badge"></span> <span id="auto-approve-badge"></span> <span id="archive-btns"></span> <span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">auto-generated when a plan is executed</span></h2>
|
package/dashboard/pages/prs.html
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<section class="pr-panel" id="pr-section">
|
|
2
2
|
<h2>Pull Requests <span class="count" id="pr-count">0</span>
|
|
3
3
|
<button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openAddPrModal()">+ Link PR</button>
|
|
4
|
+
<span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">created by agents, tracked with review + build status</span>
|
|
4
5
|
</h2>
|
|
5
6
|
<div id="pr-content"><p class="pr-empty">No pull requests yet.</p></div>
|
|
6
7
|
</section>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<section id="scheduled-section">
|
|
2
2
|
<h2>Scheduled Tasks <span class="count" id="scheduled-count">0</span>
|
|
3
3
|
<button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openCreateScheduleModal()">+ New</button>
|
|
4
|
+
<span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">cron-style recurring tasks dispatched automatically</span>
|
|
4
5
|
</h2>
|
|
5
6
|
<div id="scheduled-content"><p class="empty">No scheduled tasks. Add one to automate recurring work.</p></div>
|
|
6
7
|
</section>
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
<h2>Work Items <span class="count" id="wi-count">0</span>
|
|
3
3
|
<button class="pr-pager-btn" style="font-size:9px;padding:1px 6px;color:var(--green);border-color:var(--green);margin-left:8px" onclick="openCreateWorkItemModal()">+ New</button>
|
|
4
4
|
<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;margin-left:4px" onclick="toggleWorkItemArchive()">See Archive</button>
|
|
5
|
+
<span style="font-size:10px;color:var(--muted);font-weight:400;text-transform:none;letter-spacing:0">tasks dispatched to agents — auto-created from PRDs or added manually</span>
|
|
5
6
|
</h2>
|
|
6
7
|
<div id="work-items-content"><p class="empty">No work items yet.</p></div>
|
|
7
8
|
<div id="work-items-archive" style="display:none;margin-top:12px"></div>
|
package/dashboard.js
CHANGED
|
@@ -244,6 +244,7 @@ function getStatus() {
|
|
|
244
244
|
approvePlans: !!CONFIG.engine?.autoApprovePlans,
|
|
245
245
|
decompose: CONFIG.engine?.autoDecompose !== false,
|
|
246
246
|
tempAgents: !!CONFIG.engine?.allowTempAgents,
|
|
247
|
+
inboxThreshold: CONFIG.engine?.inboxConsolidateThreshold || shared.ENGINE_DEFAULTS.inboxConsolidateThreshold,
|
|
247
248
|
},
|
|
248
249
|
initialized: !!(CONFIG.agents && Object.keys(CONFIG.agents).length > 0),
|
|
249
250
|
installId: safeRead(path.join(MINIONS_DIR, '.install-id')).trim() || null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.137",
|
|
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"
|