@yemi33/minions 0.1.37 → 0.1.38
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 +10 -0
- package/dashboard/layout.html +1 -0
- package/dashboard/pages/inbox.html +0 -4
- package/dashboard/pages/schedule.html +0 -4
- package/dashboard/pages/tools.html +8 -0
- package/dashboard-build.js +1 -1
- package/dashboard.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.38 (2026-03-29)
|
|
4
|
+
|
|
5
|
+
### Dashboard
|
|
6
|
+
- dashboard-build.js
|
|
7
|
+
- dashboard.js
|
|
8
|
+
- dashboard/layout.html
|
|
9
|
+
- dashboard/pages/inbox.html
|
|
10
|
+
- dashboard/pages/schedule.html
|
|
11
|
+
- dashboard/pages/tools.html
|
|
12
|
+
|
|
3
13
|
## 0.1.37 (2026-03-28)
|
|
4
14
|
|
|
5
15
|
### Dashboard
|
package/dashboard/layout.html
CHANGED
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
<a class="sidebar-link" data-page="prs" href="/prs">Pull Requests <span class="sidebar-count" id="sidebar-pr"></span></a>
|
|
64
64
|
<a class="sidebar-link" data-page="plans" href="/plans">Plans</a>
|
|
65
65
|
<a class="sidebar-link" data-page="inbox" href="/inbox">Notes & KB</a>
|
|
66
|
+
<a class="sidebar-link" data-page="tools" href="/tools">Skills & MCP</a>
|
|
66
67
|
<a class="sidebar-link" data-page="schedule" href="/schedule">Schedules</a>
|
|
67
68
|
<a class="sidebar-link" data-page="engine" href="/engine">Engine</a>
|
|
68
69
|
</nav>
|
|
@@ -11,7 +11,3 @@
|
|
|
11
11
|
<div class="kb-tabs" id="kb-tabs"></div>
|
|
12
12
|
<div class="kb-list" id="kb-list"><p class="empty">No knowledge entries yet. Notes are classified here after consolidation.</p></div>
|
|
13
13
|
</section>
|
|
14
|
-
<section>
|
|
15
|
-
<h2>Minions Skills <span class="count" id="skills-count">0</span></h2>
|
|
16
|
-
<div id="skills-list"><p class="empty">No skills yet. Agents create these when they discover repeatable workflows.</p></div>
|
|
17
|
-
</section>
|
|
@@ -4,7 +4,3 @@
|
|
|
4
4
|
</h2>
|
|
5
5
|
<div id="scheduled-content"><p class="empty">No scheduled tasks. Add one to automate recurring work.</p></div>
|
|
6
6
|
</section>
|
|
7
|
-
<section>
|
|
8
|
-
<h2>MCP Servers <span class="count" id="mcp-count">0</span></h2>
|
|
9
|
-
<div id="mcp-list"><p class="empty">No MCP servers synced.</p></div>
|
|
10
|
-
</section>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<section>
|
|
2
|
+
<h2>Minions Skills <span class="count" id="skills-count">0</span></h2>
|
|
3
|
+
<div id="skills-list"><p class="empty">No skills yet. Agents create these when they discover repeatable workflows.</p></div>
|
|
4
|
+
</section>
|
|
5
|
+
<section>
|
|
6
|
+
<h2>MCP Servers <span class="count" id="mcp-count">0</span></h2>
|
|
7
|
+
<div id="mcp-list"><p class="empty">No MCP servers synced.</p></div>
|
|
8
|
+
</section>
|
package/dashboard-build.js
CHANGED
|
@@ -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', 'schedule', 'engine'];
|
|
23
|
+
const pages = ['home', 'work', 'prd', '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', 'schedule', 'engine'];
|
|
66
|
+
const pages = ['home', 'work', 'prd', '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