@yemi33/minions 0.1.284 → 0.1.285

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.284 (2026-04-03)
3
+ ## 0.1.285 (2026-04-03)
4
4
 
5
5
  ### Fixes
6
+ - scan default path uses os.homedir() not env vars
6
7
  - render proper thinking layout immediately — no flash of unstyled text
7
8
  - thinking indicator layout — text ... dots ... elapsed time right-aligned
8
9
  - thinking indicator shows immediately when user sends message
package/minions.js CHANGED
@@ -293,7 +293,7 @@ async function scanAndAdd({ root, depth } = {}) {
293
293
  if (root) {
294
294
  scanRoots = [path.resolve(root)];
295
295
  } else {
296
- const homeDir = process.env.USERPROFILE || process.env.HOME || '';
296
+ const homeDir = require('os').homedir();
297
297
  const answer = await ask('Where are your projects? (comma-separate for multiple)', homeDir);
298
298
  scanRoots = answer.split(',').map(s => path.resolve(s.trim())).filter(Boolean);
299
299
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.284",
3
+ "version": "0.1.285",
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"