@yemi33/minions 0.1.932 → 0.1.933

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.932 (2026-04-14)
3
+ ## 0.1.933 (2026-04-14)
4
4
 
5
5
  ### Features
6
6
  - add adoPollEnabled/ghPollEnabled engine settings
@@ -21,6 +21,7 @@
21
21
  - add red dot notification on CC tab when response completes (#934) (#946)
22
22
 
23
23
  ### Fixes
24
+ - persist adoPollEnabled/ghPollEnabled in settings save
24
25
  - prevent _consolidationInFlight race from stale force-reset timeout (#1023)
25
26
  - stop perpetual ADO poll retry when token unavailable (#1021)
26
27
  - await discoverPipelineWork instead of fire-and-forget .catch (#1020)
@@ -40,7 +41,6 @@
40
41
  - close unclosed code fences and lone backticks in renderMd (#991)
41
42
  - PRD item status stuck at dispatched when fix completes (#989)
42
43
  - dep merge ancestor pruning + pre-flight simulation (#958) (#979)
43
- - add MAX_TURNS failure class and fix enum count test (#983)
44
44
 
45
45
  ### Other
46
46
  - test(preflight): add unit tests for findClaudeBinary, runPreflight, printPreflight, checkOrExit (#953)
package/dashboard.js CHANGED
@@ -3761,7 +3761,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
3761
3761
  config.engine.maxTurnsByType = mbt;
3762
3762
  }
3763
3763
  // Boolean fields
3764
- for (const key of ['autoApprovePlans', 'evalLoop', 'autoDecompose', 'allowTempAgents', 'autoArchive']) {
3764
+ for (const key of ['autoApprovePlans', 'evalLoop', 'autoDecompose', 'allowTempAgents', 'autoArchive', 'adoPollEnabled', 'ghPollEnabled']) {
3765
3765
  if (e[key] !== undefined) config.engine[key] = !!e[key];
3766
3766
  }
3767
3767
  // Eval loop settings
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.932",
3
+ "version": "0.1.933",
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"