@yemi33/minions 0.1.952 → 0.1.954

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.952 (2026-04-14)
3
+ ## 0.1.954 (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
+ - fix ENGINE_DEFAULTS ref and derive boolean settings from defaults
28
29
  - add autoFixConflicts to boolean settings persist list
29
30
  - tighten build query guard to require mergeCommitId
30
31
  - restore sourceVersion filter after refs/pull merge ref switch
@@ -44,9 +45,9 @@
44
45
  - doc-chat Stop button actually works — release server guard on disconnect
45
46
  - CC streaming auto-retries fresh session when resume fails
46
47
  - 429 retry on abort race applies to all sends, not just queued
47
- - show actionable failure context instead of Unknown error (#1003)
48
48
 
49
49
  ### Other
50
+ - test(engine): add regression tests for autoFixConflicts flag and DEFAULTS alias
50
51
  - refactor(ado): simplify ado-status and extract build/review status helpers
51
52
  - refactor(ado): extract stripRefsHeads helper, deduplicate refs/heads/ stripping
52
53
  - refactor(ado): simplify comments, fix declaration order, promote ado import
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', 'autoFixConflicts', '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.952",
3
+ "version": "0.1.954",
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"