@yemi33/minions 0.1.223 → 0.1.225

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.225 (2026-04-03)
4
+
5
+ ### Fixes
6
+ - silence git stderr noise during repo scan
7
+
8
+ ## 0.1.224 (2026-04-03)
9
+
10
+ ### Fixes
11
+ - route 'minions scan' command to minions.js (was missing from CLI router)
12
+
3
13
  ## 0.1.223 (2026-04-03)
4
14
 
5
15
  ### Fixes
package/bin/minions.js CHANGED
@@ -479,7 +479,7 @@ if (!cmd || cmd === 'help' || cmd === '--help' || cmd === '-h') {
479
479
  execSync('minions init --force', { stdio: 'inherit', timeout: 120000 });
480
480
  } else if (cmd === 'version' || cmd === '--version' || cmd === '-v') {
481
481
  showVersion();
482
- } else if (cmd === 'add' || cmd === 'remove' || cmd === 'list') {
482
+ } else if (cmd === 'add' || cmd === 'remove' || cmd === 'list' || cmd === 'scan') {
483
483
  delegate('minions.js', [cmd, ...rest]);
484
484
  } else if (cmd === 'up' || cmd === 'restart') {
485
485
  // Start both engine and dashboard — the go-to command after a reboot
package/minions.js CHANGED
@@ -56,9 +56,9 @@ function autoDiscover(targetDir) {
56
56
  try {
57
57
  let head = '';
58
58
  try {
59
- head = execSync('git symbolic-ref refs/remotes/origin/HEAD', { cwd: targetDir, encoding: 'utf8', timeout: 5000 }).trim();
59
+ head = execSync('git symbolic-ref refs/remotes/origin/HEAD', { cwd: targetDir, encoding: 'utf8', timeout: 5000, stdio: ['pipe', 'pipe', 'pipe'] }).trim();
60
60
  } catch {
61
- head = execSync('git symbolic-ref HEAD', { cwd: targetDir, encoding: 'utf8', timeout: 5000 }).trim();
61
+ head = execSync('git symbolic-ref HEAD', { cwd: targetDir, encoding: 'utf8', timeout: 5000, stdio: ['pipe', 'pipe', 'pipe'] }).trim();
62
62
  }
63
63
  const branch = head.replace('refs/remotes/origin/', '').replace('refs/heads/', '');
64
64
  if (branch) { result.mainBranch = branch; result._found.push('main branch'); }
@@ -66,7 +66,7 @@ function autoDiscover(targetDir) {
66
66
 
67
67
  // 2. Detect repo host, org, project, repo name from git remote URL
68
68
  try {
69
- const remoteUrl = execSync('git remote get-url origin', { cwd: targetDir, encoding: 'utf8', timeout: 5000 }).trim();
69
+ const remoteUrl = execSync('git remote get-url origin', { cwd: targetDir, encoding: 'utf8', timeout: 5000, stdio: ['pipe', 'pipe', 'pipe'] }).trim();
70
70
  if (remoteUrl.includes('github.com')) {
71
71
  result.repoHost = 'github';
72
72
  // https://github.com/org/repo.git or git@github.com:org/repo.git
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.223",
3
+ "version": "0.1.225",
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"