@yemi33/minions 0.1.392 → 0.1.394
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 +3 -1
- package/dashboard/js/refresh.js +1 -0
- package/dashboard/js/render-dispatch.js +12 -1
- package/dashboard/layout.html +13 -10
- package/dashboard/styles.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.394 (2026-04-06)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- show version info at bottom of sidebar navigation
|
|
6
7
|
- track dashboard version — detect stale dashboard code separately
|
|
7
8
|
- Replace magic strings in pipeline.js with STAGE_TYPE/PIPELINE_STATUS/MEETING_STATUS constants (#244)
|
|
8
9
|
- Fix spawn-agent.js direct proc.kill() — use cross-platform helpers (#243)
|
|
9
10
|
|
|
10
11
|
### Fixes
|
|
12
|
+
- pin sidebar version to bottom — visible without scrolling
|
|
11
13
|
- show 'minions update' as primary upgrade command in version banner
|
|
12
14
|
|
|
13
15
|
## 0.1.388 (2026-04-06)
|
package/dashboard/js/refresh.js
CHANGED
|
@@ -58,6 +58,7 @@ function _processStatusUpdate(data) {
|
|
|
58
58
|
renderArchiveButtons(data.archivedPrds || []);
|
|
59
59
|
renderEngineStatus(data.engine);
|
|
60
60
|
renderVersionBanner(data.version);
|
|
61
|
+
renderSidebarVersion(data.version);
|
|
61
62
|
renderDispatch(data.dispatch);
|
|
62
63
|
window._lastDispatch = data.dispatch;
|
|
63
64
|
window._lastWorkItems = data.workItems || [];
|
|
@@ -242,4 +242,15 @@ function renderVersionBanner(version) {
|
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
-
|
|
245
|
+
function renderSidebarVersion(version) {
|
|
246
|
+
const el = document.getElementById('sidebar-version');
|
|
247
|
+
if (!el || !version) return;
|
|
248
|
+
const v = version.dashboardRunning || version.disk || '';
|
|
249
|
+
if (!v) return;
|
|
250
|
+
const parts = ['v' + v];
|
|
251
|
+
if (version.stale) parts.push('<span style="color:var(--yellow)">\u26A0 stale</span>');
|
|
252
|
+
else if (version.updateAvailable) parts.push('<span style="color:var(--green)">update available</span>');
|
|
253
|
+
el.innerHTML = parts.join(' ');
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
window.MinionsDispatch = { renderEngineStatus, renderEngineAlert, renderVersionBanner, renderSidebarVersion, renderDispatch, renderEngineLog, shortTime, showErrorDetails };
|
package/dashboard/layout.html
CHANGED
|
@@ -62,16 +62,19 @@
|
|
|
62
62
|
|
|
63
63
|
<div class="page-layout">
|
|
64
64
|
<nav class="sidebar" id="sidebar">
|
|
65
|
-
<
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
65
|
+
<div style="flex:1;overflow-y:auto">
|
|
66
|
+
<a class="sidebar-link" data-page="home" href="/">Home</a>
|
|
67
|
+
<a class="sidebar-link" data-page="work" href="/work">Work Items <span class="sidebar-count" id="sidebar-wi"></span></a>
|
|
68
|
+
<a class="sidebar-link" data-page="plans" href="/plans">Plans & PRD</a>
|
|
69
|
+
<a class="sidebar-link" data-page="prs" href="/prs">Pull Requests <span class="sidebar-count" id="sidebar-pr"></span></a>
|
|
70
|
+
<a class="sidebar-link" data-page="inbox" href="/inbox">Notes & KB</a>
|
|
71
|
+
<a class="sidebar-link" data-page="tools" href="/tools">Skills & MCP</a>
|
|
72
|
+
<a class="sidebar-link" data-page="schedule" href="/schedule">Schedules</a>
|
|
73
|
+
<a class="sidebar-link" data-page="pipelines" href="/pipelines">Pipelines</a>
|
|
74
|
+
<a class="sidebar-link" data-page="meetings" href="/meetings">Meetings</a>
|
|
75
|
+
<a class="sidebar-link" data-page="engine" href="/engine">Engine</a>
|
|
76
|
+
</div>
|
|
77
|
+
<div id="sidebar-version" style="flex-shrink:0;padding:8px 12px;font-size:9px;color:var(--muted);border-top:1px solid var(--border)"></div>
|
|
75
78
|
</nav>
|
|
76
79
|
<div class="page-content" id="page-content"><!-- __PAGES__ --></div>
|
|
77
80
|
</div>
|
package/dashboard/styles.css
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
/* Sidebar navigation */
|
|
44
44
|
.page-layout { display: flex; height: calc(100vh - 44px); overflow: hidden; }
|
|
45
|
-
.sidebar { width: 150px; min-width: 150px; background: var(--surface); border-right: 1px solid var(--border); padding: var(--space-4) 0; overflow
|
|
45
|
+
.sidebar { width: 150px; min-width: 150px; background: var(--surface); border-right: 1px solid var(--border); padding: var(--space-4) 0; overflow: hidden; position: sticky; top: 0; display: flex; flex-direction: column; }
|
|
46
46
|
.sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; color: var(--muted); text-decoration: none; font-size: var(--text-sm); border-left: 3px solid transparent; transition: all var(--transition-fast); cursor: pointer; position: relative; }
|
|
47
47
|
.sidebar-link .notif-badge.done { top: 50%; right: 6px; transform: translateY(-50%); width: 6px; height: 6px; }
|
|
48
48
|
.sidebar-link:hover { color: var(--text); background: var(--surface2); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.394",
|
|
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"
|