@yemi33/minions 0.1.183 → 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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.185 (2026-04-02)
4
+
5
+ ### Dashboard
6
+ - dashboard.js
7
+ - dashboard/js/settings.js
8
+
9
+ ## 0.1.184 (2026-04-02)
10
+
11
+ ### Dashboard
12
+ - dashboard.js
13
+
3
14
  ## 0.1.183 (2026-04-02)
4
15
 
5
16
  ### 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
@@ -372,11 +372,11 @@ If no actions are needed (just answering a question, or you handled it directly)
372
372
  Available action types:
373
373
  - **dispatch**: Create a work item for an agent. Fields: title, workType, priority (low/medium/high), agents (array of IDs, optional), project, description.
374
374
  workType values — choose carefully, this determines the playbook and whether a PR is expected:
375
- - \`explore\` — research, investigate, read code, gather information, assess quality, write findings (NO PR expected)
375
+ - \`explore\` — research, investigate, read code, gather information, write findings (NO PR expected)
376
376
  - \`ask\` — answer a question, analyze something, produce a report (NO PR expected)
377
377
  - \`implement\` — write new code, add a feature, create something (PR expected)
378
378
  - \`fix\` — fix a bug, address review feedback on an existing PR (PR expected)
379
- - \`review\` — code review an existing PR (NO PR expected)
379
+ - \`review\` — code review, quality assessment, evaluate completed work, verify acceptance criteria (NO PR expected)
380
380
  - \`test\` — run tests, write test cases (PR expected if new tests written)
381
381
  - \`verify\` — build PRs locally, merge branches, start dev server, get localhost URL to test (NO PR expected)
382
382
  If unsure, prefer \`explore\` for read-only tasks and \`implement\` for write tasks.
@@ -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.183",
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"