@yemi33/minions 0.1.219 → 0.1.221

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,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.221 (2026-04-02)
4
+
5
+ ### Other
6
+ - bin/minions.js
7
+
8
+ ## 0.1.220 (2026-04-02)
9
+
10
+ ### Documentation
11
+ - README.md
12
+
3
13
  ## 0.1.219 (2026-04-02)
4
14
 
5
15
  ### Other
package/README.md CHANGED
@@ -43,21 +43,14 @@ node ~/.minions/minions.js init
43
43
  ## Upgrading
44
44
 
45
45
  ```bash
46
- # Check if an update is available
47
- minions version
48
-
49
- # Update the npm package and apply changes
50
- npm update -g @yemi33/minions
51
- minions init --force
46
+ minions update
52
47
  ```
53
48
 
54
- **What gets updated:** Engine code (`.js`, `.html`), new playbooks, new agent charters, new docs, `CHANGELOG.md`.
49
+ One command pulls the latest npm package and applies the update automatically. Equivalent to `npm update -g @yemi33/minions && minions init --force`.
55
50
 
56
- **What's preserved:** Your `config.json`, agent history, notes, knowledge base, routing, skills, and any `.md` files you've customized (charters, playbooks). If a new playbook or charter is added in an update, it's installed automatically without touching your existing ones.
57
-
58
- Upgrades now skip the interactive repo scan automatically. If you want to re-run discovery later, run `minions scan`. To skip scanning during the very first install, pass `--skip-scan` and link projects manually when ready.
51
+ **What gets updated:** Engine code (`.js`, `.html`), new playbooks, new agent charters, new docs, `CHANGELOG.md`.
59
52
 
60
- **What's shown:** A summary of files updated, added, and preserved, plus a pointer to the changelog.
53
+ **What's preserved:** Your `config.json`, agent history, notes, knowledge base, routing, skills, and any `.md` files you've customized (charters, playbooks). New files are added automatically without touching existing ones.
61
54
 
62
55
  ### Migrating from legacy installs
63
56
 
@@ -131,8 +124,8 @@ minions work "Explore the codebase and document the architecture"
131
124
 
132
125
  | Command | Description |
133
126
  |---------|-------------|
134
- | `minions init` | Bootstrap `~/.minions/` with default agents and config (`--skip-scan` to skip repo scan) |
135
- | `minions init --force` | Upgrade engine code + add new files (preserves customizations) |
127
+ | `minions init` | Bootstrap `~/.minions/` with default agents and config |
128
+ | `minions update` | Update to latest version (npm update + apply) |
136
129
  | `minions version` | Show installed vs package version |
137
130
  | `minions scan [dir] [depth]` | Scan for git repos and multi-select to add (default: ~, depth 3) |
138
131
  | `minions add <dir>` | Link a single project (auto-detects settings from git, prompts to confirm) |
package/bin/minions.js CHANGED
@@ -157,7 +157,7 @@ function resolveMinionsHome(forInit = false) {
157
157
  }
158
158
 
159
159
  const [cmd, ...rest] = process.argv.slice(2);
160
- const force = rest.includes('--force');
160
+ let force = rest.includes('--force');
161
161
  const skipScan = rest.includes('--skip-scan');
162
162
  const MINIONS_HOME = resolveMinionsHome(cmd === 'init');
163
163
 
@@ -475,8 +475,7 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
475
475
  console.error(' npm update failed:', e.message);
476
476
  process.exit(1);
477
477
  }
478
- // Re-run init --force to apply the update
479
- rest.push('--force');
478
+ force = true;
480
479
  init();
481
480
  } else if (cmd === 'version' || cmd === '--version' || cmd === '-v') {
482
481
  showVersion();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.219",
3
+ "version": "0.1.221",
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"