@yemi33/minions 0.1.955 → 0.1.956

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.955 (2026-04-14)
3
+ ## 0.1.956 (2026-04-14)
4
4
 
5
5
  ### Features
6
+ - wire agentBusyReassignMs into settings UI and persist
6
7
  - ADO throttle detection, poll guards, and dashboard banner (#1051)
7
8
  - gate auto-fix conflict dispatch behind autoFixConflicts flag
8
9
  - add PR/build status CLI shim and agent guidance
@@ -22,7 +23,6 @@
22
23
  - fix dashboard plan-pause nested lock violation (#968)
23
24
  - add missing branch_name to central dispatch vars (#967)
24
25
  - fix dispatch.js mutator fallback to use nullish coalescing (#966)
25
- - fix stall recovery nested lock violation (#965)
26
26
 
27
27
  ### Fixes
28
28
  - fix ENGINE_DEFAULTS ref and derive boolean settings from defaults
@@ -61,6 +61,7 @@ async function openSettings() {
61
61
  settingsField('Eval Max Iterations', 'set-evalMaxIterations', e.evalMaxIterations || 3, '', 'Max review→fix cycles before escalating (1-10)') +
62
62
  settingsField('Eval Max Cost', 'set-evalMaxCost', e.evalMaxCost === null || e.evalMaxCost === undefined ? '' : e.evalMaxCost, '$', 'USD ceiling per work item across all eval iterations (blank = no limit)') +
63
63
  settingsField('Max Build Fix Attempts', 'set-maxBuildFixAttempts', e.maxBuildFixAttempts || 3, '', 'Max auto-fix dispatches per PR before escalating to human (1-10)') +
64
+ settingsField('Agent Busy Reassign', 'set-agentBusyReassignMs', e.agentBusyReassignMs || 600000, 'ms', 'Reassign work to another agent after it waits this long on a busy agent') +
64
65
  settingsField('Version Check Interval', 'set-versionCheckInterval', e.versionCheckInterval || 3600000, 'ms', 'How often to check npm for updates (default: 1 hour)') +
65
66
  settingsField('Ignored Comment Authors', 'set-ignoredCommentAuthors', (e.ignoredCommentAuthors || []).join(', '), '', 'Comma-separated usernames — comments auto-closed, never trigger fixes') +
66
67
  '</div>' +
@@ -246,6 +247,7 @@ async function saveSettings() {
246
247
  evalMaxIterations: document.getElementById('set-evalMaxIterations').value,
247
248
  evalMaxCost: document.getElementById('set-evalMaxCost').value || null,
248
249
  maxBuildFixAttempts: document.getElementById('set-maxBuildFixAttempts').value,
250
+ agentBusyReassignMs: document.getElementById('set-agentBusyReassignMs').value,
249
251
  ignoredCommentAuthors: document.getElementById('set-ignoredCommentAuthors').value,
250
252
  versionCheckInterval: document.getElementById('set-versionCheckInterval').value,
251
253
  ccModel: document.getElementById('set-ccModel').value,
package/dashboard.js CHANGED
@@ -3754,6 +3754,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
3754
3754
  versionCheckInterval: [60000],
3755
3755
  maxBuildFixAttempts: [1, 10],
3756
3756
  adoPollStatusEvery: [1], adoPollCommentsEvery: [1],
3757
+ agentBusyReassignMs: [60000],
3757
3758
  };
3758
3759
  for (const [key, [min, max]] of Object.entries(numericFields)) {
3759
3760
  if (e[key] !== undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.955",
3
+ "version": "0.1.956",
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"