@yemi33/minions 0.1.221 → 0.1.223

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,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.223 (2026-04-03)
4
+
5
+ ### Fixes
6
+ - changelog uses commit messages instead of file lists
7
+
8
+ ## 0.1.222 (2026-04-03)
9
+
10
+ ### Other
11
+ - bin/minions.js
12
+
3
13
  ## 0.1.221 (2026-04-02)
4
14
 
5
15
  ### Other
package/bin/minions.js CHANGED
@@ -475,8 +475,8 @@ 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
- force = true;
479
- init();
478
+ // Re-exec the NEW binary (just installed) so the updated code runs init --force
479
+ execSync('minions init --force', { stdio: 'inherit', timeout: 120000 });
480
480
  } else if (cmd === 'version' || cmd === '--version' || cmd === '-v') {
481
481
  showVersion();
482
482
  } else if (cmd === 'add' || cmd === 'remove' || cmd === 'list') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.221",
3
+ "version": "0.1.223",
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"