@yemi33/minions 0.1.978 → 0.1.980

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.978 (2026-04-15)
3
+ ## 0.1.980 (2026-04-15)
4
4
 
5
5
  ### Features
6
+ - gate build failure auto-fix behind autoFixBuilds flag
6
7
  - free-form interval input + CC create-watch action
7
8
  - flush queued CC messages as single combined request
8
9
  - add quality standard reminder to all agent and CC prompts
@@ -22,7 +23,6 @@
22
23
  - add adoPollEnabled/ghPollEnabled engine settings
23
24
  - doc-chat abort kills LLM process + queued messages auto-process
24
25
  - add /api/work-items/reopen endpoint and reopen-work-item CC action (#982)
25
- - CC tab unread dot + reopened badge on work items
26
26
 
27
27
  ### Fixes
28
28
  - ENGINE_DEFAULTS undefined in tick + playbook empty-var false positives
@@ -49,6 +49,7 @@ async function openSettings() {
49
49
  settingsToggle('Auto-decompose', 'set-autoDecompose', e.autoDecompose !== false, 'Large implement items are auto-split into sub-tasks') +
50
50
  settingsToggle('Allow Temp Agents', 'set-allowTempAgents', !!e.allowTempAgents, 'Spawn ephemeral agents when all permanent agents are busy') +
51
51
  settingsToggle('Auto-archive Plans', 'set-autoArchive', !!e.autoArchive, 'Automatically archive plans after verify completes (off = manual archive via dashboard)') +
52
+ settingsToggle('Auto-fix Builds', 'set-autoFixBuilds', e.autoFixBuilds !== false, 'Auto-dispatch fix agents when a PR build fails') +
52
53
  settingsToggle('Auto-fix Conflicts', 'set-autoFixConflicts', e.autoFixConflicts !== false, 'Auto-dispatch fix agents when a PR has merge conflicts') +
53
54
  settingsToggle('ADO Polling', 'set-adoPollEnabled', e.adoPollEnabled !== false, 'Poll ADO PR status and comments each tick (reconciliation always runs)') +
54
55
  settingsToggle('GitHub Polling', 'set-ghPollEnabled', e.ghPollEnabled !== false, 'Poll GitHub PR status and comments each tick (reconciliation always runs)') +
@@ -239,6 +240,7 @@ async function saveSettings() {
239
240
  autoDecompose: document.getElementById('set-autoDecompose').checked,
240
241
  allowTempAgents: document.getElementById('set-allowTempAgents').checked,
241
242
  autoArchive: document.getElementById('set-autoArchive').checked,
243
+ autoFixBuilds: document.getElementById('set-autoFixBuilds').checked,
242
244
  autoFixConflicts: document.getElementById('set-autoFixConflicts').checked,
243
245
  adoPollEnabled: document.getElementById('set-adoPollEnabled').checked,
244
246
  ghPollEnabled: document.getElementById('set-ghPollEnabled').checked,
package/engine/shared.js CHANGED
@@ -534,6 +534,7 @@ const ENGINE_DEFAULTS = {
534
534
  autoArchive: false, // opt-in: auto-archive plans after verify completes (false = mark ready, user archives manually)
535
535
  autoReview: true, // auto-dispatch review agents for new PRs (disable for manual review workflow)
536
536
  autoFixConflicts: true, // auto-dispatch fix agents when a PR has merge conflicts
537
+ autoFixBuilds: true, // auto-dispatch fix agents when a PR build fails
537
538
  meetingRoundTimeout: 600000, // 10min per meeting round before auto-advance
538
539
  evalLoop: true, // enable review→fix loop after implementation completes
539
540
  evalMaxIterations: 3, // max review→fix cycles before escalating to human
package/engine.js CHANGED
@@ -2045,7 +2045,8 @@ async function discoverFromPrs(config, project) {
2045
2045
  const gracePeriodMs = config.engine?.buildFixGracePeriod ?? DEFAULTS.buildFixGracePeriod;
2046
2046
  if (Date.now() - new Date(pr._buildFixPushedAt).getTime() < gracePeriodMs) continue;
2047
2047
  }
2048
- if (pr.status === PR_STATUS.ACTIVE && pr.buildStatus === 'failing') {
2048
+ const autoFixBuilds = config.engine?.autoFixBuilds ?? DEFAULTS.autoFixBuilds;
2049
+ if (autoFixBuilds && pr.status === PR_STATUS.ACTIVE && pr.buildStatus === 'failing') {
2049
2050
  const maxBuildFix = config.engine?.maxBuildFixAttempts ?? DEFAULTS.maxBuildFixAttempts;
2050
2051
 
2051
2052
  // Check if max retry cap reached — escalate to human instead of dispatching another fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.978",
3
+ "version": "0.1.980",
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"