@yemi33/minions 0.1.317 → 0.1.318
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 +2 -1
- package/dashboard/js/render-other.js +1 -1
- package/dashboard.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -249,7 +249,7 @@ async function openScanProjectsModal() {
|
|
|
249
249
|
'<div style="display:flex;flex-direction:column;gap:12px">' +
|
|
250
250
|
'<div style="display:flex;gap:8px;align-items:flex-end">' +
|
|
251
251
|
'<label style="flex:1;color:var(--text);font-size:var(--text-md)">Directory to scan' +
|
|
252
|
-
'<input id="scan-path" value="' + escHtml(
|
|
252
|
+
'<input id="scan-path" value="' + escHtml(window.__MINIONS_HOME || '~') + '" style="display:block;width:100%;margin-top:4px;padding:6px 8px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text);font-size:var(--text-md)">' +
|
|
253
253
|
'</label>' +
|
|
254
254
|
'<label style="width:60px;color:var(--text);font-size:var(--text-md)">Depth' +
|
|
255
255
|
'<input id="scan-depth" type="number" value="3" min="1" max="6" style="display:block;width:100%;margin-top:4px;padding:6px 8px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);color:var(--text);font-size:var(--text-md)">' +
|
package/dashboard.js
CHANGED
|
@@ -94,7 +94,7 @@ function buildDashboardHtml() {
|
|
|
94
94
|
return layout
|
|
95
95
|
.replace('/* __CSS__ */', () => css)
|
|
96
96
|
.replace('<!-- __PAGES__ -->', () => pageHtml)
|
|
97
|
-
.replace('/* __JS__ */', () => jsHtml);
|
|
97
|
+
.replace('/* __JS__ */', () => `window.__MINIONS_HOME = ${JSON.stringify(os.homedir())};\n${jsHtml}`);
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
let HTML_RAW = buildDashboardHtml();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.318",
|
|
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"
|