@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 CHANGED
@@ -1,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.317 (2026-04-03)
3
+ ## 0.1.318 (2026-04-03)
4
4
 
5
5
  ### Fixes
6
+ - scan modal shows actual home directory instead of ~
6
7
  - deduplicate PRs in pull-requests.json on write
7
8
  - show reviewer names in dashboard Signed Off By column
8
9
 
@@ -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((typeof os !== 'undefined' ? os.homedir() : '~') || '~') + '" 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)">' +
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.317",
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"