@yemi33/minions 0.1.1122 → 0.1.1123

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.1122 (2026-04-18)
3
+ ## 0.1.1123 (2026-04-18)
4
4
 
5
5
  ### Features
6
6
  - validate project name and path on POST /api/projects/add (SEC-04, SEC-05) (#1298)
@@ -26,6 +26,51 @@
26
26
  - stamp live-output.log stub before spawn (#1198)
27
27
  - harden settings save and migrate pr poll config
28
28
 
29
+ ### Other
30
+ - refactor: hoist fixThrottled before PR loop and drop underscore prefix
31
+ - docs(skill): add substitute-scheduler-template-vars (#1278)
32
+ - Clarify PR poll labels
33
+ - Prevent modal opens on text selection
34
+ - refactor: clarify settings page section structure and PR polling dependencies
35
+ - refactor: extract _probeClaudePackage helper, use shared.log for spawn errors
36
+ - Make work item descriptions scrollable
37
+ - Use PAT for publish merges
38
+ - test(queries): add unit tests for invalidateDispatchCache/getInbox/getAgentCharter (#1214)
39
+ - test(shared): add unit tests for truncateTextBytes/tailTextBytes/execSilent/trackReviewMetric/parseCanonicalPrId (#1215)
40
+ - Fix publish workflow merge
41
+ - chore: raise default meeting round timeout
42
+ - Harden prompt context handling
43
+ - Harden loop watch conversion
44
+ - Add watches sidebar activity badge
45
+ - test(cli): add unit tests for handleCommand, start, stop, kill, spawn (#1191)
46
+ - chore: untrack pipeline files — local config only
47
+ - restore: recover daily-arch-improvement and weekly-dead-code-cleanup pipelines
48
+ - Harden CC stream resilience
49
+
50
+ ## 0.1.1121 (2026-04-18)
51
+
52
+ ### Features
53
+ - seed realActivityMap at spawn time, stamp pid in live-output (#1200)
54
+
55
+ ### Fixes
56
+ - gate auto-fix dispatch on throttle state to prevent stale-data spurious fixes
57
+ - preserve buildErrorLog through transient build states (#1232) (#1274)
58
+ - annotate fast-exit empty-output failures with diagnostic hint (#1276)
59
+ - invalidate PRD cache on pr-links.json change + guard aggregate PRs (#1220) (#1272)
60
+ - pass --add-dir for minions + ~/.claude to agents (#1271)
61
+ - preserve VERDICT marker by tail-slicing agent output (#1234) (#1270)
62
+ - PRD info cache staleness and aggregate PR bleed-through (#1222)
63
+ - avoid no-op work item writes
64
+ - resilient claude binary resolution + surface spawn errors
65
+ - resolve native claude.exe from npm wrapper on Windows
66
+ - cap temp-agent creation at maxConcurrent per tick (#1219)
67
+ - reassign pending items from unspawned temp agents to idle named agents (#1204) (#1212)
68
+ - guard undefined agent in pending dispatch loop (closes #1206) (#1210)
69
+ - improve fallback meeting conclusion
70
+ - remove command center chevron
71
+ - stamp live-output.log stub before spawn (#1198)
72
+ - harden settings save and migrate pr poll config
73
+
29
74
  ### Other
30
75
  - docs(skill): add substitute-scheduler-template-vars (#1278)
31
76
  - Clarify PR poll labels
package/engine.js CHANGED
@@ -1956,6 +1956,7 @@ 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();
1959
1960
 
1960
1961
  // Collect active PR dispatches to prevent simultaneous review+fix on same PR
1961
1962
  const dispatch = getDispatch();
@@ -2164,7 +2165,6 @@ async function discoverFromPrs(config, project) {
2164
2165
  if (Date.now() - new Date(pr._buildFixPushedAt).getTime() < gracePeriodMs) continue;
2165
2166
  }
2166
2167
  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
 
@@ -2190,7 +2190,7 @@ async function discoverFromPrs(config, project) {
2190
2190
  }
2191
2191
 
2192
2192
  const key = `build-fix-${project?.name || 'default'}-${prDisplayId}`;
2193
- if (_fixThrottled || isAlreadyDispatched(key) || isOnCooldown(key, cooldownMs)) continue;
2193
+ if (fixThrottled || isAlreadyDispatched(key) || isOnCooldown(key, cooldownMs)) continue;
2194
2194
  const agentId = resolveAgent('fix', config, pr.agent);
2195
2195
  if (!agentId) continue;
2196
2196
 
@@ -2252,7 +2252,7 @@ async function discoverFromPrs(config, project) {
2252
2252
  // a successful push. _conflictFixedAt is cleared when the poller confirms clean status.
2253
2253
  const conflictFixedAt = pr._conflictFixedAt;
2254
2254
  const withinLag = conflictFixedAt && Date.now() - new Date(conflictFixedAt).getTime() < 10 * 60 * 1000;
2255
- if (!withinLag && !_fixThrottled && !isAlreadyDispatched(key) && !isOnCooldown(key, cooldownMs)) {
2255
+ if (!withinLag && !fixThrottled && !isAlreadyDispatched(key) && !isOnCooldown(key, cooldownMs)) {
2256
2256
  const agentId = resolveAgent('fix', config, pr.agent);
2257
2257
  if (agentId) {
2258
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.1122",
3
+ "version": "0.1.1123",
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"