@yemi33/minions 0.1.211 → 0.1.212

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,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.212 (2026-04-02)
4
+
5
+ ### Dashboard
6
+ - dashboard.js
7
+
3
8
  ## 0.1.211 (2026-04-02)
4
9
 
5
10
  ### Dashboard
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.211",
3
+ "version": "0.1.212",
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"