@yemi33/minions 0.1.951 → 0.1.952

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,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.951 (2026-04-14)
3
+ ## 0.1.952 (2026-04-14)
4
4
 
5
5
  ### Features
6
6
  - gate auto-fix conflict dispatch behind autoFixConflicts flag
@@ -25,6 +25,7 @@
25
25
  - fix pending-rebases.json race condition with file locking (#964)
26
26
 
27
27
  ### Fixes
28
+ - add autoFixConflicts to boolean settings persist list
28
29
  - tighten build query guard to require mergeCommitId
29
30
  - restore sourceVersion filter after refs/pull merge ref switch
30
31
  - use refs/pull/{id}/merge for build status scoping
@@ -44,7 +45,6 @@
44
45
  - CC streaming auto-retries fresh session when resume fails
45
46
  - 429 retry on abort race applies to all sends, not just queued
46
47
  - show actionable failure context instead of Unknown error (#1003)
47
- - prioritize error_max_turns over permission-blocked in classifyFailure (#1001)
48
48
 
49
49
  ### Other
50
50
  - refactor(ado): simplify ado-status and extract build/review status helpers
package/dashboard.js CHANGED
@@ -3783,7 +3783,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
3783
3783
  config.engine.maxTurnsByType = mbt;
3784
3784
  }
3785
3785
  // Boolean fields
3786
- for (const key of ['autoApprovePlans', 'evalLoop', 'autoDecompose', 'allowTempAgents', 'autoArchive', 'adoPollEnabled', 'ghPollEnabled']) {
3786
+ for (const key of ['autoApprovePlans', 'evalLoop', 'autoDecompose', 'allowTempAgents', 'autoArchive', 'autoFixConflicts', 'adoPollEnabled', 'ghPollEnabled']) {
3787
3787
  if (e[key] !== undefined) config.engine[key] = !!e[key];
3788
3788
  }
3789
3789
  // Eval loop settings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.951",
3
+ "version": "0.1.952",
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"