@yemi33/minions 0.1.496 → 0.1.498
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 +8 -0
- package/dashboard/js/refresh.js +3 -3
- package/dashboard/layout.html +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dashboard/js/refresh.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
const _pageCounters = {
|
|
6
6
|
home: function(d) { return (d.dispatch?.completed || []).length; },
|
|
7
7
|
work: function(d) { return (d.workItems || []).length + '|' + (d.workItems || []).filter(function(w) { return w.status === 'done' || w.status === 'failed'; }).length; },
|
|
8
|
-
plans: function(d) { return (d.prdProgress?.complete || 0) + '|' + (d.plans || []).length; },
|
|
8
|
+
plans: function(d) { return (d.prdProgress?.complete || 0) + '|' + (d.plans || []).length + '|' + (d.plans || []).map(function(p) { return p.status || ''; }).join(','); },
|
|
9
9
|
prs: function(d) { return (d.pullRequests || []).length + '|' + (d.pullRequests || []).filter(function(p) { return p.status === 'merged'; }).length; },
|
|
10
10
|
inbox: function(d) { return (d.inbox || []).length + '|' + (d.notes?.content || '').length; },
|
|
11
|
-
meetings: function(d) { return (d.meetings || []).reduce(function(s, m) { return s + (m.round || 0); }, 0); },
|
|
12
|
-
pipelines: function(d) { return (d.pipelines || []).reduce(function(s, p) { return s + (p.runs || []).length; }, 0); },
|
|
11
|
+
meetings: function(d) { return (d.meetings || []).length + '|' + (d.meetings || []).reduce(function(s, m) { return s + (m.round || 0); }, 0); },
|
|
12
|
+
pipelines: function(d) { return (d.pipelines || []).length + '|' + (d.pipelines || []).reduce(function(s, p) { return s + (p.runs || []).length; }, 0); },
|
|
13
13
|
schedule: function(d) { return (d.schedules || []).length; },
|
|
14
14
|
engine: function(d) { return (d.dispatch?.completed || []).filter(function(c) { return c.result === 'error'; }).length; },
|
|
15
15
|
};
|
package/dashboard/layout.html
CHANGED
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
<a class="sidebar-link" data-page="prs" href="/prs">Pull Requests <span class="sidebar-count" id="sidebar-pr"></span></a>
|
|
71
71
|
<a class="sidebar-link" data-page="inbox" href="/inbox">Notes & KB</a>
|
|
72
72
|
<a class="sidebar-link" data-page="tools" href="/tools">Skills & MCP</a>
|
|
73
|
-
<a class="sidebar-link" data-page="schedule" href="/schedule">Schedules</a>
|
|
74
|
-
<a class="sidebar-link" data-page="pipelines" href="/pipelines">Pipelines</a>
|
|
73
|
+
<a class="sidebar-link" data-page="schedule" href="/schedule" title="Cron-based recurring tasks (single task per schedule)">Schedules</a>
|
|
74
|
+
<a class="sidebar-link" data-page="pipelines" href="/pipelines" title="Multi-stage workflows — chain tasks, meetings, plans with dependencies">Pipelines</a>
|
|
75
75
|
<a class="sidebar-link" data-page="meetings" href="/meetings">Meetings</a>
|
|
76
76
|
<a class="sidebar-link" data-page="engine" href="/engine">Engine</a>
|
|
77
77
|
</nav>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.498",
|
|
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"
|