@yemi33/minions 0.1.975 → 0.1.976

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.975 (2026-04-14)
3
+ ## 0.1.976 (2026-04-14)
4
4
 
5
5
  ### Features
6
6
  - flush queued CC messages as single combined request
7
7
  - add quality standard reminder to all agent and CC prompts
8
8
  - surface in-flight tool calls in lastAction (#1064)
9
+ - reassign tasks when preferred agent is busy too long
9
10
  - wire agentBusyReassignMs into settings UI and persist
10
11
  - ADO throttle detection, poll guards, and dashboard banner (#1051)
11
12
  - gate auto-fix conflict dispatch behind autoFixConflicts flag
@@ -22,13 +23,13 @@
22
23
  - CC tab unread dot + reopened badge on work items
23
24
  - fix dep re-merge failure on retry with existing commits (#977)
24
25
  - audit and harden log buffering implementation (#971)
25
- - replace magic string 'active' with PR_STATUS.ACTIVE in lifecycle.js (#969)
26
26
 
27
27
  ### Fixes
28
28
  - move review verdict check before updateWorkItemStatus(DONE)
29
29
  - skip isAlreadyDispatched in needsReReview to allow re-review within 1hr
30
30
  - loop queue flush so messages queued during combined send aren't orphaned
31
31
  - set lastPushedAt on fix completion to unblock re-review without poller
32
+ - restore ADO throttle test functions deleted during merge conflict resolution
32
33
  - trigger second-pass re-review after fix agent completes
33
34
  - update ccInFlightAborts when retry LLM replaces original
34
35
  - skip orphaned LLM retry when client disconnected during CC stream
@@ -41,10 +42,9 @@
41
42
  - enforce --timeout 1 on all azureauth calls to prevent agent orphans (#1063)
42
43
  - cancel steering kill watcher on resume spawn (#1052) (#1062)
43
44
  - suppress warn for optional template variables (#1061)
45
+ - skip SessionStart hook settings test on CI
46
+ - fix boolean settings test and add agentBusyReassignMs to dashboard
44
47
  - fix ENGINE_DEFAULTS ref and derive boolean settings from defaults
45
- - add autoFixConflicts to boolean settings persist list
46
- - tighten build query guard to require mergeCommitId
47
- - restore sourceVersion filter after refs/pull merge ref switch
48
48
 
49
49
  ### Other
50
50
  - refactor(dashboard): extract _releaseCCTab helper and CC_LOCK_WAIT_MS constant
package/dashboard.js CHANGED
@@ -3789,7 +3789,7 @@ What would you like to discuss or change? When you're happy, say "approve" and I
3789
3789
  versionCheckInterval: [60000],
3790
3790
  maxBuildFixAttempts: [1, 10],
3791
3791
  adoPollStatusEvery: [1], adoPollCommentsEvery: [1],
3792
- agentBusyReassignMs: [60000],
3792
+ agentBusyReassignMs: [0],
3793
3793
  };
3794
3794
  for (const [key, [min, max]] of Object.entries(numericFields)) {
3795
3795
  if (e[key] !== undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.975",
3
+ "version": "0.1.976",
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"