@yemi33/minions 0.1.222 → 0.1.224
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 +10 -0
- package/bin/minions.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.224 (2026-04-03)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
- route 'minions scan' command to minions.js (was missing from CLI router)
|
|
7
|
+
|
|
8
|
+
## 0.1.223 (2026-04-03)
|
|
9
|
+
|
|
10
|
+
### Fixes
|
|
11
|
+
- changelog uses commit messages instead of file lists
|
|
12
|
+
|
|
3
13
|
## 0.1.222 (2026-04-03)
|
|
4
14
|
|
|
5
15
|
### Other
|
package/bin/minions.js
CHANGED
|
@@ -479,7 +479,7 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
|
|
|
479
479
|
execSync('minions init --force', { stdio: 'inherit', timeout: 120000 });
|
|
480
480
|
} else if (cmd === 'version' || cmd === '--version' || cmd === '-v') {
|
|
481
481
|
showVersion();
|
|
482
|
-
} else if (cmd === 'add' || cmd === 'remove' || cmd === 'list') {
|
|
482
|
+
} else if (cmd === 'add' || cmd === 'remove' || cmd === 'list' || cmd === 'scan') {
|
|
483
483
|
delegate('minions.js', [cmd, ...rest]);
|
|
484
484
|
} else if (cmd === 'up' || cmd === 'restart') {
|
|
485
485
|
// Start both engine and dashboard — the go-to command after a reboot
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.224",
|
|
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"
|