@yemi33/minions 0.1.203 → 0.1.204

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/minions.js +17 -15
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.204 (2026-04-02)
4
+
5
+ ### Other
6
+ - minions.js
7
+
3
8
  ## 0.1.203 (2026-04-02)
4
9
 
5
10
  ### Other
package/minions.js CHANGED
@@ -425,21 +425,23 @@ async function initMinions({ skipScan = false, scanRoot, scanDepth } = {}) {
425
425
  console.log(`\n Minions initialized at ${MINIONS_HOME}`);
426
426
  console.log(` Config, agents, and engine defaults created.\n`);
427
427
 
428
- // Preflight checks
429
- let preflightOk = true;
430
- try { execSync('git --version', { encoding: 'utf8', timeout: 5000, stdio: 'pipe' }); console.log(' ✓ Git found'); }
431
- catch { console.log(' Git not found agents need git for worktrees and PRs'); preflightOk = false; }
432
- try {
433
- const isWin = process.platform === 'win32';
434
- const cmd = isWin ? 'where claude 2>NUL' : 'which claude 2>/dev/null';
435
- execSync(cmd, { encoding: 'utf8', timeout: 5000, stdio: 'pipe' });
436
- console.log(' Claude Code CLI found');
437
- } catch { console.log(' Claude Code CLI not found — install: npm i -g @anthropic-ai/claude-code (or native installer)'); preflightOk = false; }
438
- const nodeVer = parseInt(process.versions.node);
439
- if (nodeVer >= 18) { console.log(' ✓ Node.js ' + process.versions.node); }
440
- else { console.log(' Node.js ' + process.versions.node + ' — version 18+ required'); preflightOk = false; }
441
- if (!preflightOk) console.log('\n Some prerequisites missing agents may fail until resolved.\n');
442
- else console.log('');
428
+ // Preflight checks (skip if called from bin/minions.js which runs its own)
429
+ if (!skipScan) {
430
+ let preflightOk = true;
431
+ try { execSync('git --version', { encoding: 'utf8', timeout: 5000, stdio: 'pipe' }); console.log(' ✓ Git found'); }
432
+ catch { console.log(' Git not found — agents need git for worktrees and PRs'); preflightOk = false; }
433
+ try {
434
+ const isWin = process.platform === 'win32';
435
+ const cmd = isWin ? 'where claude 2>NUL' : 'which claude 2>/dev/null';
436
+ execSync(cmd, { encoding: 'utf8', timeout: 5000, stdio: 'pipe' });
437
+ console.log(' Claude Code CLI found');
438
+ } catch { console.log(' Claude Code CLI not found — install: npm i -g @anthropic-ai/claude-code (or native installer)'); preflightOk = false; }
439
+ const nodeVer = parseInt(process.versions.node);
440
+ if (nodeVer >= 18) { console.log(' Node.js ' + process.versions.node); }
441
+ else { console.log(' Node.js ' + process.versions.node + ' version 18+ required'); preflightOk = false; }
442
+ if (!preflightOk) console.log('\n Some prerequisites missing — agents may fail until resolved.\n');
443
+ else console.log('');
444
+ }
443
445
  if (removedPlaceholders > 0) {
444
446
  console.log(` Removed ${removedPlaceholders} placeholder project entr${removedPlaceholders === 1 ? 'y' : 'ies'} from config.\n`);
445
447
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.203",
3
+ "version": "0.1.204",
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"