@yemi33/minions 0.1.184 → 0.1.185

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.185 (2026-04-02)
4
+
5
+ ### Dashboard
6
+ - dashboard.js
7
+ - dashboard/js/settings.js
8
+
3
9
  ## 0.1.184 (2026-04-02)
4
10
 
5
11
  ### Dashboard
@@ -43,6 +43,10 @@ async function openSettings() {
43
43
  settingsToggle('Auto-decompose', 'set-autoDecompose', e.autoDecompose !== false, 'Large implement items are auto-split into sub-tasks') +
44
44
  settingsToggle('Allow Temp Agents', 'set-allowTempAgents', !!e.allowTempAgents, 'Spawn ephemeral agents when all permanent agents are busy') +
45
45
  '</div>' +
46
+ '<div style="display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px">' +
47
+ settingsField('Eval Max Iterations', 'set-evalMaxIterations', e.evalMaxIterations || 3, '', 'Max review→fix cycles before escalating (1-10)') +
48
+ 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)') +
49
+ '</div>' +
46
50
 
47
51
  '<h3 style="font-size:13px;color:var(--blue);margin-bottom:8px">Claude CLI</h3>' +
48
52
  '<div style="display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:16px">' +
@@ -126,6 +130,8 @@ async function saveSettings() {
126
130
  evalLoop: document.getElementById('set-evalLoop').checked,
127
131
  autoDecompose: document.getElementById('set-autoDecompose').checked,
128
132
  allowTempAgents: document.getElementById('set-allowTempAgents').checked,
133
+ evalMaxIterations: document.getElementById('set-evalMaxIterations').value,
134
+ evalMaxCost: document.getElementById('set-evalMaxCost').value || null,
129
135
  };
130
136
 
131
137
  const claudePayload = {
package/dashboard.js CHANGED
@@ -2973,6 +2973,8 @@ What would you like to discuss or change? When you're happy, say "approve" and I
2973
2973
  for (const key of ['autoApprovePlans', 'evalLoop', 'autoDecompose', 'allowTempAgents']) {
2974
2974
  if (e[key] !== undefined) config.engine[key] = !!e[key];
2975
2975
  }
2976
+ if (e.evalMaxIterations !== undefined) config.engine.evalMaxIterations = Math.max(1, Math.min(10, Number(e.evalMaxIterations) || D.evalMaxIterations));
2977
+ if (e.evalMaxCost !== undefined) config.engine.evalMaxCost = e.evalMaxCost === null || e.evalMaxCost === '' ? null : Math.max(0, Number(e.evalMaxCost) || 0);
2976
2978
  }
2977
2979
 
2978
2980
  if (body.claude) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.184",
3
+ "version": "0.1.185",
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"