@yemi33/minions 0.1.730 → 0.1.731

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.731 (2026-04-09)
4
+
5
+ ### Fixes
6
+ - raise maxConcurrent cap from 10 to 50
7
+
3
8
  ## 0.1.730 (2026-04-09)
4
9
 
5
10
  ### Features
package/dashboard.js CHANGED
@@ -3520,7 +3520,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
3520
3520
  const D = shared.ENGINE_DEFAULTS;
3521
3521
  // Numeric fields: { key: [min, max?] }
3522
3522
  const numericFields = {
3523
- tickInterval: [10000], maxConcurrent: [1, 10], inboxConsolidateThreshold: [1],
3523
+ tickInterval: [10000], maxConcurrent: [1, 50], inboxConsolidateThreshold: [1],
3524
3524
  agentTimeout: [60000], maxTurns: [5, 500], heartbeatTimeout: [60000],
3525
3525
  worktreeCreateTimeout: [60000], worktreeCreateRetries: [0, 3],
3526
3526
  idleAlertMinutes: [1], shutdownTimeout: [30000], restartGracePeriod: [60000],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.730",
3
+ "version": "0.1.731",
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"