@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 +8 -0
- package/bin/minions.js +1 -1
- package/engine/cli.js +1 -1
- package/engine/copilot-models.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
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"
|