@yemi33/minions 0.1.220 → 0.1.221

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.221 (2026-04-02)
4
+
5
+ ### Other
6
+ - bin/minions.js
7
+
3
8
  ## 0.1.220 (2026-04-02)
4
9
 
5
10
  ### Documentation
package/bin/minions.js CHANGED
@@ -157,7 +157,7 @@ function resolveMinionsHome(forInit = false) {
157
157
  }
158
158
 
159
159
  const [cmd, ...rest] = process.argv.slice(2);
160
- const force = rest.includes('--force');
160
+ let force = rest.includes('--force');
161
161
  const skipScan = rest.includes('--skip-scan');
162
162
  const MINIONS_HOME = resolveMinionsHome(cmd === 'init');
163
163
 
@@ -475,8 +475,7 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
475
475
  console.error(' npm update failed:', e.message);
476
476
  process.exit(1);
477
477
  }
478
- // Re-run init --force to apply the update
479
- rest.push('--force');
478
+ force = true;
480
479
  init();
481
480
  } else if (cmd === 'version' || cmd === '--version' || cmd === '-v') {
482
481
  showVersion();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.220",
3
+ "version": "0.1.221",
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"