@yemi33/minions 0.1.32 → 0.1.33

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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.33 (2026-03-28)
4
+
5
+ ### Dashboard
6
+ - dashboard.js
7
+
3
8
  ## 0.1.32 (2026-03-28)
4
9
 
5
10
  ### Dashboard
package/dashboard.js CHANGED
@@ -2430,7 +2430,8 @@ What would you like to discuss or change? When you're happy, say "approve" and I
2430
2430
  let selectedPath = '';
2431
2431
  if (process.platform === 'win32') {
2432
2432
  // PowerShell STA with topmost window as owner — forces folder dialog to foreground
2433
- const ps = [
2433
+ // Write PS script to temp file to avoid shell quoting issues
2434
+ const psScript = [
2434
2435
  'Add-Type -AssemblyName System.Windows.Forms',
2435
2436
  '$f = New-Object System.Windows.Forms.FolderBrowserDialog',
2436
2437
  '$f.Description = "Select project folder"',
@@ -2443,8 +2444,13 @@ What would you like to discuss or change? When you're happy, say "approve" and I
2443
2444
  '$owner.Hide()',
2444
2445
  'if ($f.ShowDialog($owner) -eq "OK") { Write-Output $f.SelectedPath }',
2445
2446
  '$owner.Dispose()',
2446
- ].join('; ');
2447
- selectedPath = execSync(`powershell -STA -NoProfile -Command "${ps}"`, { encoding: 'utf8', timeout: 120000 }).trim();
2447
+ ].join('\r\n');
2448
+ const psPath = path.join(MINIONS_DIR, 'engine', 'tmp', '_browse.ps1');
2449
+ fs.mkdirSync(path.dirname(psPath), { recursive: true });
2450
+ fs.writeFileSync(psPath, psScript);
2451
+ try {
2452
+ selectedPath = execSync(`powershell -STA -NoProfile -ExecutionPolicy Bypass -File "${psPath}"`, { encoding: 'utf8', timeout: 120000 }).trim();
2453
+ } finally { try { fs.unlinkSync(psPath); } catch {} }
2448
2454
  } else if (process.platform === 'darwin') {
2449
2455
  selectedPath = execSync(`osascript -e 'POSIX path of (choose folder with prompt "Select project folder")'`, { encoding: 'utf8', timeout: 120000 }).trim();
2450
2456
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
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"