@yemi33/minions 0.1.218 → 0.1.219
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 +5 -0
- package/bin/minions.js +12 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/minions.js
CHANGED
|
@@ -439,7 +439,7 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
|
|
|
439
439
|
|
|
440
440
|
Setup:
|
|
441
441
|
minions init Bootstrap ~/.minions/ (first time)
|
|
442
|
-
minions
|
|
442
|
+
minions update Update to latest version (npm update + init --force)
|
|
443
443
|
minions version Show installed vs package version
|
|
444
444
|
minions doctor Check prerequisites and runtime health
|
|
445
445
|
minions add <project-dir> Link a project (interactive)
|
|
@@ -467,6 +467,17 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
|
|
|
467
467
|
`);
|
|
468
468
|
} else if (cmd === 'init') {
|
|
469
469
|
init();
|
|
470
|
+
} else if (cmd === 'update') {
|
|
471
|
+
console.log('\n Updating Minions...\n');
|
|
472
|
+
try {
|
|
473
|
+
execSync('npm update -g @yemi33/minions', { stdio: 'inherit', timeout: 120000 });
|
|
474
|
+
} catch (e) {
|
|
475
|
+
console.error(' npm update failed:', e.message);
|
|
476
|
+
process.exit(1);
|
|
477
|
+
}
|
|
478
|
+
// Re-run init --force to apply the update
|
|
479
|
+
rest.push('--force');
|
|
480
|
+
init();
|
|
470
481
|
} else if (cmd === 'version' || cmd === '--version' || cmd === '-v') {
|
|
471
482
|
showVersion();
|
|
472
483
|
} 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.
|
|
3
|
+
"version": "0.1.219",
|
|
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"
|