@yemi33/minions 0.1.1117 → 0.1.1119

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.1117 (2026-04-18)
3
+ ## 0.1.1119 (2026-04-18)
4
4
 
5
5
  ### Features
6
6
  - seed realActivityMap at spawn time, stamp pid in live-output (#1200)
7
7
 
8
8
  ### Fixes
9
+ - gate auto-fix dispatch on throttle state to prevent stale-data spurious fixes
9
10
  - preserve buildErrorLog through transient build states (#1232) (#1274)
10
11
  - annotate fast-exit empty-output failures with diagnostic hint (#1276)
11
12
  - invalidate PRD cache on pr-links.json change + guard aggregate PRs (#1220) (#1272)
@@ -43,6 +44,92 @@
43
44
  - restore: recover daily-arch-improvement and weekly-dead-code-cleanup pipelines
44
45
  - Harden CC stream resilience
45
46
 
47
+ ## 0.1.1118 (2026-04-18)
48
+
49
+ ### Features
50
+ - seed realActivityMap at spawn time, stamp pid in live-output (#1200)
51
+
52
+ ### Fixes
53
+ - gate auto-fix dispatch on throttle state to prevent stale-data spurious fixes
54
+ - preserve buildErrorLog through transient build states (#1232) (#1274)
55
+ - annotate fast-exit empty-output failures with diagnostic hint (#1276)
56
+ - invalidate PRD cache on pr-links.json change + guard aggregate PRs (#1220) (#1272)
57
+ - pass --add-dir for minions + ~/.claude to agents (#1271)
58
+ - preserve VERDICT marker by tail-slicing agent output (#1234) (#1270)
59
+ - PRD info cache staleness and aggregate PR bleed-through (#1222)
60
+ - avoid no-op work item writes
61
+ - resilient claude binary resolution + surface spawn errors
62
+ - resolve native claude.exe from npm wrapper on Windows
63
+ - cap temp-agent creation at maxConcurrent per tick (#1219)
64
+ - reassign pending items from unspawned temp agents to idle named agents (#1204) (#1212)
65
+ - guard undefined agent in pending dispatch loop (closes #1206) (#1210)
66
+ - improve fallback meeting conclusion
67
+ - remove command center chevron
68
+ - stamp live-output.log stub before spawn (#1198)
69
+ - harden settings save and migrate pr poll config
70
+
71
+ ### Other
72
+ - docs(skill): add substitute-scheduler-template-vars (#1278)
73
+ - Clarify PR poll labels
74
+ - Prevent modal opens on text selection
75
+ - refactor: clarify settings page section structure and PR polling dependencies
76
+ - refactor: extract _probeClaudePackage helper, use shared.log for spawn errors
77
+ - Make work item descriptions scrollable
78
+ - Use PAT for publish merges
79
+ - test(queries): add unit tests for invalidateDispatchCache/getInbox/getAgentCharter (#1214)
80
+ - test(shared): add unit tests for truncateTextBytes/tailTextBytes/execSilent/trackReviewMetric/parseCanonicalPrId (#1215)
81
+ - Fix publish workflow merge
82
+ - chore: raise default meeting round timeout
83
+ - Harden prompt context handling
84
+ - Harden loop watch conversion
85
+ - Add watches sidebar activity badge
86
+ - test(cli): add unit tests for handleCommand, start, stop, kill, spawn (#1191)
87
+ - chore: untrack pipeline files — local config only
88
+ - restore: recover daily-arch-improvement and weekly-dead-code-cleanup pipelines
89
+ - Harden CC stream resilience
90
+
91
+ ## 0.1.1116 (2026-04-18)
92
+
93
+ ### Features
94
+ - seed realActivityMap at spawn time, stamp pid in live-output (#1200)
95
+
96
+ ### Fixes
97
+ - preserve buildErrorLog through transient build states (#1232) (#1274)
98
+ - annotate fast-exit empty-output failures with diagnostic hint (#1276)
99
+ - invalidate PRD cache on pr-links.json change + guard aggregate PRs (#1220) (#1272)
100
+ - pass --add-dir for minions + ~/.claude to agents (#1271)
101
+ - preserve VERDICT marker by tail-slicing agent output (#1234) (#1270)
102
+ - PRD info cache staleness and aggregate PR bleed-through (#1222)
103
+ - avoid no-op work item writes
104
+ - resilient claude binary resolution + surface spawn errors
105
+ - resolve native claude.exe from npm wrapper on Windows
106
+ - cap temp-agent creation at maxConcurrent per tick (#1219)
107
+ - reassign pending items from unspawned temp agents to idle named agents (#1204) (#1212)
108
+ - guard undefined agent in pending dispatch loop (closes #1206) (#1210)
109
+ - improve fallback meeting conclusion
110
+ - remove command center chevron
111
+ - stamp live-output.log stub before spawn (#1198)
112
+ - harden settings save and migrate pr poll config
113
+
114
+ ### Other
115
+ - Clarify PR poll labels
116
+ - Prevent modal opens on text selection
117
+ - refactor: clarify settings page section structure and PR polling dependencies
118
+ - refactor: extract _probeClaudePackage helper, use shared.log for spawn errors
119
+ - Make work item descriptions scrollable
120
+ - Use PAT for publish merges
121
+ - test(queries): add unit tests for invalidateDispatchCache/getInbox/getAgentCharter (#1214)
122
+ - test(shared): add unit tests for truncateTextBytes/tailTextBytes/execSilent/trackReviewMetric/parseCanonicalPrId (#1215)
123
+ - Fix publish workflow merge
124
+ - chore: raise default meeting round timeout
125
+ - Harden prompt context handling
126
+ - Harden loop watch conversion
127
+ - Add watches sidebar activity badge
128
+ - test(cli): add unit tests for handleCommand, start, stop, kill, spawn (#1191)
129
+ - chore: untrack pipeline files — local config only
130
+ - restore: recover daily-arch-improvement and weekly-dead-code-cleanup pipelines
131
+ - Harden CC stream resilience
132
+
46
133
  ## 0.1.1115 (2026-04-18)
47
134
 
48
135
  ### Features
package/engine.js CHANGED
@@ -2164,6 +2164,7 @@ async function discoverFromPrs(config, project) {
2164
2164
  if (Date.now() - new Date(pr._buildFixPushedAt).getTime() < gracePeriodMs) continue;
2165
2165
  }
2166
2166
  const autoFixBuilds = config.engine?.autoFixBuilds ?? ENGINE_DEFAULTS.autoFixBuilds;
2167
+ const _fixThrottled = isAdoProject ? isAdoThrottled() : isGhThrottled();
2167
2168
  if (autoFixBuilds && pr.status === PR_STATUS.ACTIVE && pr.buildStatus === 'failing') {
2168
2169
  const maxBuildFix = config.engine?.maxBuildFixAttempts ?? ENGINE_DEFAULTS.maxBuildFixAttempts;
2169
2170
 
@@ -2189,7 +2190,7 @@ async function discoverFromPrs(config, project) {
2189
2190
  }
2190
2191
 
2191
2192
  const key = `build-fix-${project?.name || 'default'}-${prDisplayId}`;
2192
- if (isAlreadyDispatched(key) || isOnCooldown(key, cooldownMs)) continue;
2193
+ if (_fixThrottled || isAlreadyDispatched(key) || isOnCooldown(key, cooldownMs)) continue;
2193
2194
  const agentId = resolveAgent('fix', config, pr.agent);
2194
2195
  if (!agentId) continue;
2195
2196
 
@@ -2251,7 +2252,7 @@ async function discoverFromPrs(config, project) {
2251
2252
  // a successful push. _conflictFixedAt is cleared when the poller confirms clean status.
2252
2253
  const conflictFixedAt = pr._conflictFixedAt;
2253
2254
  const withinLag = conflictFixedAt && Date.now() - new Date(conflictFixedAt).getTime() < 10 * 60 * 1000;
2254
- if (!withinLag && !isAlreadyDispatched(key) && !isOnCooldown(key, cooldownMs)) {
2255
+ if (!withinLag && !_fixThrottled && !isAlreadyDispatched(key) && !isOnCooldown(key, cooldownMs)) {
2255
2256
  const agentId = resolveAgent('fix', config, pr.agent);
2256
2257
  if (agentId) {
2257
2258
  const item = buildPrDispatch(agentId, config, project, pr, 'fix', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1117",
3
+ "version": "0.1.1119",
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"