@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.
- package/CHANGELOG.md +5 -0
- package/minions.js +17 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
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.
|
|
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"
|