@yemi33/minions 0.1.407 → 0.1.408
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 +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/minions.js
CHANGED
|
@@ -483,6 +483,9 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
|
|
|
483
483
|
}
|
|
484
484
|
// Re-exec the NEW binary (just installed) so the updated code runs init --force
|
|
485
485
|
execSync('minions init --force', { stdio: 'inherit', timeout: 120000 });
|
|
486
|
+
// Restart engine + dashboard so they pick up the new code
|
|
487
|
+
console.log('\n Restarting engine and dashboard...\n');
|
|
488
|
+
execSync('minions restart', { stdio: 'inherit', timeout: 60000 });
|
|
486
489
|
} else if (cmd === 'version' || cmd === '--version' || cmd === '-v') {
|
|
487
490
|
showVersion();
|
|
488
491
|
} else if (cmd === 'add' || cmd === 'remove' || cmd === 'list' || cmd === 'scan') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.408",
|
|
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"
|