@yemi33/minions 0.1.1561 → 0.1.1562

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.1562 (2026-04-27)
4
+
5
+ ### Other
6
+ - chore: minions uninstall prints re-install command
7
+
3
8
  ## 0.1.1561 (2026-04-27)
4
9
 
5
10
  ### Other
package/bin/minions.js CHANGED
@@ -713,7 +713,9 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
713
713
  console.log(' Uninstalling npm package...');
714
714
  try { execSync('npm uninstall -g @yemi33/minions', { stdio: 'inherit', timeout: 60000 }); } catch {}
715
715
 
716
- console.log('\n Minions uninstalled. Your project repos were not touched.\n');
716
+ console.log('\n Minions uninstalled. Your project repos were not touched.');
717
+ console.log('\n To re-install later, run:');
718
+ console.log(' npm install -g @yemi33/minions && minions init\n');
717
719
  } else if (cmd === 'doctor') {
718
720
  ensureInstalled();
719
721
  const { doctor } = require(path.join(MINIONS_HOME, 'engine', 'preflight'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1561",
3
+ "version": "0.1.1562",
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"