@yemi33/minions 0.1.1137 → 0.1.1138

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.1137 (2026-04-18)
3
+ ## 0.1.1138 (2026-04-18)
4
4
 
5
5
  ### Features
6
6
  - redact ADO tokens and JWTs from engine/log.json writes (#1297)
@@ -9,6 +9,7 @@
9
9
  - seed realActivityMap at spawn time, stamp pid in live-output (#1200)
10
10
 
11
11
  ### Fixes
12
+ - re-check throttle state per-PR iteration to avoid stale fixThrottled
12
13
  - preserve buildErrorLog through transient states, persist poll time (#1273)
13
14
  - auto-fetch PR title on link-pr (closes #1283) (#1299)
14
15
  - scheduler double-fire within same cron minute (#1277)
@@ -28,7 +29,6 @@
28
29
  - improve fallback meeting conclusion
29
30
  - remove command center chevron
30
31
  - stamp live-output.log stub before spawn (#1198)
31
- - harden settings save and migrate pr poll config
32
32
 
33
33
  ### Other
34
34
  - refactor: hoist fixThrottled before PR loop and drop underscore prefix
package/engine.js CHANGED
@@ -1956,7 +1956,6 @@ async function discoverFromPrs(config, project) {
1956
1956
  ? (config.engine?.adoPollEnabled ?? ENGINE_DEFAULTS.adoPollEnabled)
1957
1957
  : (config.engine?.ghPollEnabled ?? ENGINE_DEFAULTS.ghPollEnabled);
1958
1958
  const evalLoopEnabled = config.engine?.evalLoop !== false;
1959
- const fixThrottled = isAdoProject ? isAdoThrottled() : isGhThrottled();
1960
1959
 
1961
1960
  // Collect active PR dispatches to prevent simultaneous review+fix on same PR
1962
1961
  const dispatch = getDispatch();
@@ -2165,6 +2164,7 @@ async function discoverFromPrs(config, project) {
2165
2164
  if (Date.now() - new Date(pr._buildFixPushedAt).getTime() < gracePeriodMs) continue;
2166
2165
  }
2167
2166
  const autoFixBuilds = config.engine?.autoFixBuilds ?? ENGINE_DEFAULTS.autoFixBuilds;
2167
+ const fixThrottled = isAdoProject ? isAdoThrottled() : isGhThrottled();
2168
2168
  if (autoFixBuilds && pr.status === PR_STATUS.ACTIVE && pr.buildStatus === 'failing') {
2169
2169
  const maxBuildFix = config.engine?.maxBuildFixAttempts ?? ENGINE_DEFAULTS.maxBuildFixAttempts;
2170
2170
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1137",
3
+ "version": "0.1.1138",
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"