@yemi33/minions 0.1.951 → 0.1.953

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.953 (2026-04-14)
4
4
 
5
5
  ### Features
6
6
  - gate auto-fix conflict dispatch behind autoFixConflicts flag
@@ -25,6 +25,8 @@
25
25
  - fix pending-rebases.json race condition with file locking (#964)
26
26
 
27
27
  ### Fixes
28
+ - fix ENGINE_DEFAULTS ref and derive boolean settings from defaults
29
+ - add autoFixConflicts to boolean settings persist list
28
30
  - tighten build query guard to require mergeCommitId
29
31
  - restore sourceVersion filter after refs/pull merge ref switch
30
32
  - use refs/pull/{id}/merge for build status scoping
@@ -43,8 +45,6 @@
43
45
  - doc-chat Stop button actually works — release server guard on disconnect
44
46
  - CC streaming auto-retries fresh session when resume fails
45
47
  - 429 retry on abort race applies to all sends, not just queued
46
- - 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,8 @@ 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
+ const booleanFields = Object.keys(shared.ENGINE_DEFAULTS).filter(k => typeof shared.ENGINE_DEFAULTS[k] === 'boolean');
3787
+ for (const key of booleanFields) {
3787
3788
  if (e[key] !== undefined) config.engine[key] = !!e[key];
3788
3789
  }
3789
3790
  // Eval loop settings
package/engine.js CHANGED
@@ -2119,7 +2119,7 @@ async function discoverFromPrs(config, project) {
2119
2119
  }
2120
2120
 
2121
2121
  // PRs with merge conflicts — dispatch fix to resolve (gated by autoFixConflicts)
2122
- const autoFixConflicts = config.engine?.autoFixConflicts ?? ENGINE_DEFAULTS.autoFixConflicts;
2122
+ const autoFixConflicts = config.engine?.autoFixConflicts ?? DEFAULTS.autoFixConflicts;
2123
2123
  if (autoFixConflicts && pr.status === PR_STATUS.ACTIVE && pr._mergeConflict && !fixDispatched) {
2124
2124
  const key = `conflict-fix-${project?.name || 'default'}-${pr.id}`;
2125
2125
  // Suppress re-dispatch for 10 min after last attempt — ADO/GitHub recomputes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.951",
3
+ "version": "0.1.953",
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"