@yemi33/minions 0.1.1711 → 0.1.1712

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1712 (2026-05-04)
4
+
5
+ ### Fixes
6
+ - not a git repository" stderr on npm-installed clients
7
+
8
+ ### Other
9
+ - Silence git revision lookup stderr
10
+
3
11
  ## 0.1.1711 (2026-05-04)
4
12
 
5
13
  ### Other
package/bin/minions.js CHANGED
@@ -228,7 +228,7 @@ function saveInstalledVersion(version) {
228
228
  fs.writeFileSync(path.join(MINIONS_HOME, '.minions-version'), version);
229
229
  // Persist source commit so dashboard can detect repo-based installs
230
230
  try {
231
- const commit = execSync('git rev-parse --short HEAD', { cwd: PKG_ROOT, encoding: 'utf8', timeout: 5000, windowsHide: true }).trim();
231
+ const commit = execSync('git rev-parse --short HEAD', { cwd: PKG_ROOT, encoding: 'utf8', timeout: 5000, windowsHide: true, stdio: ['pipe', 'pipe', 'pipe'] }).trim();
232
232
  if (commit) fs.writeFileSync(path.join(MINIONS_HOME, '.minions-commit'), commit);
233
233
  } catch {}
234
234
  }
package/engine/cli.js CHANGED
@@ -356,7 +356,7 @@ const commands = {
356
356
  } catch {}
357
357
  }
358
358
  let codeCommit = null;
359
- try { codeCommit = require('child_process').execSync('git rev-parse --short HEAD', { cwd: path.resolve(__dirname, '..'), encoding: 'utf8', timeout: 5000, windowsHide: true }).trim(); } catch {}
359
+ try { codeCommit = require('child_process').execSync('git rev-parse --short HEAD', { cwd: path.resolve(__dirname, '..'), encoding: 'utf8', timeout: 5000, windowsHide: true, stdio: ['pipe', 'pipe', 'pipe'] }).trim(); } catch {}
360
360
  const controlOwner = createControlOwner();
361
361
  mutateControl(() => ({
362
362
  state: 'running',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-04T17:19:35.871Z"
4
+ "cachedAt": "2026-05-04T17:48:19.949Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1711",
3
+ "version": "0.1.1712",
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"