@yemi33/minions 0.1.212 → 0.1.214

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.214 (2026-04-02)
4
+
5
+ ### Other
6
+ - bin/minions.js
7
+
8
+ ## 0.1.213 (2026-04-02)
9
+
10
+ ### Other
11
+ - bin/minions.js
12
+
3
13
  ## 0.1.212 (2026-04-02)
4
14
 
5
15
  ### Dashboard
package/bin/minions.js CHANGED
@@ -276,21 +276,7 @@ function init() {
276
276
  fs.writeFileSync(installIdPath, crypto.randomBytes(8).toString('hex'));
277
277
  }
278
278
 
279
- // Print summary
280
279
  console.log('');
281
- if (actions.updated.length > 0) {
282
- console.log(` Updated (${actions.updated.length}):`);
283
- for (const f of actions.updated) console.log(` ↑ ${f}`);
284
- }
285
- if (actions.created.length > 0) {
286
- console.log(` Added (${actions.created.length}):`);
287
- for (const f of actions.created) console.log(` + ${f}`);
288
- }
289
- if (actions.skipped.length > 0 && !isUpgrade) {
290
- // Only show skipped on fresh install if something unexpected happened
291
- } else if (actions.skipped.length > 0) {
292
- console.log(` Preserved (${actions.skipped.length} user-customized files)`);
293
- }
294
280
 
295
281
  // Show changelog for upgrades
296
282
  if (isUpgrade && installedVersion && installedVersion !== pkgVersion) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.212",
3
+ "version": "0.1.214",
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"