@yemi33/minions 0.1.211 → 0.1.213
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 +10 -0
- package/bin/minions.js +6 -14
- package/dashboard.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/minions.js
CHANGED
|
@@ -276,21 +276,13 @@ function init() {
|
|
|
276
276
|
fs.writeFileSync(installIdPath, crypto.randomBytes(8).toString('hex'));
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
-
// Print summary
|
|
279
|
+
// Print summary — counts only, not individual files
|
|
280
280
|
console.log('');
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
}
|
|
285
|
-
if (
|
|
286
|
-
console.log(` Added (${actions.created.length}):`);
|
|
287
|
-
for (const f of actions.created) console.log(` + ${f}`);
|
|
288
|
-
}
|
|
289
|
-
if (actions.skipped.length > 0 && !isUpgrade) {
|
|
290
|
-
// Only show skipped on fresh install if something unexpected happened
|
|
291
|
-
} else if (actions.skipped.length > 0) {
|
|
292
|
-
console.log(` Preserved (${actions.skipped.length} user-customized files)`);
|
|
293
|
-
}
|
|
281
|
+
const parts = [];
|
|
282
|
+
if (actions.updated.length > 0) parts.push(`${actions.updated.length} updated`);
|
|
283
|
+
if (actions.created.length > 0) parts.push(`${actions.created.length} added`);
|
|
284
|
+
if (actions.skipped.length > 0 && isUpgrade) parts.push(`${actions.skipped.length} preserved`);
|
|
285
|
+
if (parts.length > 0) console.log(` Files: ${parts.join(', ')}`);
|
|
294
286
|
|
|
295
287
|
// Show changelog for upgrades
|
|
296
288
|
if (isUpgrade && installedVersion && installedVersion !== pkgVersion) {
|
package/dashboard.js
CHANGED
|
@@ -3112,6 +3112,10 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
3112
3112
|
for (const key of ['allowedTools', 'outputFormat']) {
|
|
3113
3113
|
if (body.claude[key] !== undefined) config.claude[key] = String(body.claude[key]);
|
|
3114
3114
|
}
|
|
3115
|
+
if (body.claude.permissionMode !== undefined) {
|
|
3116
|
+
const valid = ['bypassPermissions', 'auto', 'default'];
|
|
3117
|
+
config.claude.permissionMode = valid.includes(body.claude.permissionMode) ? body.claude.permissionMode : 'bypassPermissions';
|
|
3118
|
+
}
|
|
3115
3119
|
}
|
|
3116
3120
|
|
|
3117
3121
|
if (body.agents) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.213",
|
|
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"
|