@yemi33/minions 0.1.270 → 0.1.271

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.270 (2026-04-03)
3
+ ## 0.1.271 (2026-04-03)
4
4
 
5
5
  ### Features
6
6
  - CC streaming shows cumulative tool list with loading dots
7
7
 
8
8
  ### Fixes
9
+ - remove 'minions up' alias, keep 'minions restart' only
9
10
  - agent and engine usage tables both have 7 columns for alignment
10
11
  - streaming CC was popping user messages from _ccMessages
11
12
  - process remaining SSE buffer after stream ends + fallback finalization
package/bin/minions.js CHANGED
@@ -448,7 +448,7 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
448
448
  minions list List linked projects
449
449
 
450
450
  Engine:
451
- minions up Start engine + dashboard (use after reboot)
451
+ minions restart Start engine + dashboard (use after reboot)
452
452
  minions start Start engine daemon only
453
453
  minions stop Stop the engine
454
454
  minions status Show agents, projects, queue
@@ -487,7 +487,7 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
487
487
  showVersion();
488
488
  } else if (cmd === 'add' || cmd === 'remove' || cmd === 'list' || cmd === 'scan') {
489
489
  delegate('minions.js', [cmd, ...rest]);
490
- } else if (cmd === 'up' || cmd === 'restart') {
490
+ } else if (cmd === 'restart') {
491
491
  // Start both engine and dashboard — the go-to command after a reboot
492
492
  ensureInstalled();
493
493
  // Stop engine if running
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.270",
3
+ "version": "0.1.271",
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"