@yemi33/minions 0.1.43 → 0.1.45

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.45 (2026-03-29)
4
+
5
+ ### Dashboard
6
+ - dashboard-build.js
7
+ - dashboard.js
8
+ - dashboard/layout.html
9
+ - dashboard/pages/plans.html
10
+
11
+ ### Other
12
+ - test/unit.test.js
13
+
14
+ ## 0.1.44 (2026-03-29)
15
+
16
+ ### Other
17
+ - test/unit.test.js
18
+
3
19
  ## 0.1.43 (2026-03-29)
4
20
 
5
21
  ### Engine
@@ -59,9 +59,8 @@
59
59
  <nav class="sidebar" id="sidebar">
60
60
  <a class="sidebar-link" data-page="home" href="/">Home</a>
61
61
  <a class="sidebar-link" data-page="work" href="/work">Work Items <span class="sidebar-count" id="sidebar-wi"></span></a>
62
- <a class="sidebar-link" data-page="prd" href="/prd">PRD</a>
62
+ <a class="sidebar-link" data-page="plans" href="/plans">Plans & PRD</a>
63
63
  <a class="sidebar-link" data-page="prs" href="/prs">Pull Requests <span class="sidebar-count" id="sidebar-pr"></span></a>
64
- <a class="sidebar-link" data-page="plans" href="/plans">Plans</a>
65
64
  <a class="sidebar-link" data-page="inbox" href="/inbox">Notes & KB</a>
66
65
  <a class="sidebar-link" data-page="tools" href="/tools">Skills & MCP</a>
67
66
  <a class="sidebar-link" data-page="schedule" href="/schedule">Schedules</a>
@@ -4,3 +4,8 @@
4
4
  </h2>
5
5
  <div id="plans-list"><p class="empty">No plans yet. Use /plan in the command center to create one.</p></div>
6
6
  </section>
7
+ <section class="prd-panel" id="prd-section">
8
+ <h2>PRD <span class="count" id="prd-progress-count">0%</span> <span id="prd-badge"></span> <span id="archive-btns"></span></h2>
9
+ <div id="prd-content"><p class="prd-pending">No PRD found.</p></div>
10
+ <div id="prd-progress-content" style="margin-top:12px"></div>
11
+ </section>
@@ -20,7 +20,7 @@ function buildDashboardHtml() {
20
20
  const layout = safeRead(layoutPath);
21
21
  const css = safeRead(path.join(dashDir, 'styles.css'));
22
22
 
23
- const pages = ['home', 'work', 'prd', 'prs', 'plans', 'inbox', 'tools', 'schedule', 'engine'];
23
+ const pages = ['home', 'work', 'prs', 'plans', 'inbox', 'tools', 'schedule', 'engine'];
24
24
  let pageHtml = '';
25
25
  for (const p of pages) {
26
26
  const content = safeRead(path.join(dashDir, 'pages', p + '.html'));
package/dashboard.js CHANGED
@@ -63,7 +63,7 @@ function buildDashboardHtml() {
63
63
  const css = safeRead(path.join(dashDir, 'styles.css'));
64
64
 
65
65
  // Assemble page fragments
66
- const pages = ['home', 'work', 'prd', 'prs', 'plans', 'inbox', 'tools', 'schedule', 'engine'];
66
+ const pages = ['home', 'work', 'prs', 'plans', 'inbox', 'tools', 'schedule', 'engine'];
67
67
  let pageHtml = '';
68
68
  for (const p of pages) {
69
69
  const content = safeRead(path.join(dashDir, 'pages', p + '.html'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
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"