@yemi33/minions 0.1.991 → 0.1.992

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.991 (2026-04-15)
3
+ ## 0.1.992 (2026-04-15)
4
4
 
5
5
  ### Features
6
6
  - fix doc-chat Clear chat not persisting session deletion to localStorage (#1102)
@@ -25,6 +25,8 @@
25
25
  - add PR/build status CLI shim and agent guidance
26
26
 
27
27
  ### Fixes
28
+ - remove dead 'meeting' row from routing.md — orchestrated by engine/meeting.js directly
29
+ - gate review auto-dispatch on adoPollEnabled and evalLoop (#1116)
28
30
  - updatePrAfterReview preserves fixedAt when writing minionsReview
29
31
  - replace undefined PROJECTS with config.projects in checkWatches (#1104)
30
32
  - fix syncPrsFromOutput skipping tool_result lines where PR URLs live (#1100)
@@ -43,8 +45,6 @@
43
45
  - set lastPushedAt on fix completion to unblock re-review without poller
44
46
  - restore ADO throttle test functions deleted during merge conflict resolution
45
47
  - trigger second-pass re-review after fix agent completes
46
- - update ccInFlightAborts when retry LLM replaces original
47
- - skip orphaned LLM retry when client disconnected during CC stream
48
48
 
49
49
  ### Other
50
50
  - refactor(watches): rename maxTriggers→stopAfter, add onNotMet per-poll action
package/engine.js CHANGED
@@ -2033,8 +2033,9 @@ async function discoverFromPrs(config, project) {
2033
2033
  }
2034
2034
 
2035
2035
  // PRs with changes requested → route back to author for fix
2036
+ // Gate on evalLoopEnabled — the review→fix cycle is the eval loop
2036
2037
  let fixDispatched = false;
2037
- if (reviewStatus === 'changes-requested' && !awaitingReReview && !evalEscalated) {
2038
+ if (evalLoopEnabled && reviewStatus === 'changes-requested' && !awaitingReReview && !evalEscalated) {
2038
2039
  const key = `fix-${project?.name || 'default'}-${pr.id}`;
2039
2040
  if (isAlreadyDispatched(key) || isOnCooldown(key, cooldownMs)) continue;
2040
2041
  const agentId = resolveAgent('fix', config, pr.agent);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.991",
3
+ "version": "0.1.992",
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"
package/routing.md CHANGED
@@ -18,7 +18,6 @@ How the engine decides who handles what. Parsed by engine.js — keep the table
18
18
  | ask | ripley | rebecca |
19
19
  | verify | dallas | ralph |
20
20
  | decompose | ripley | rebecca |
21
- | meeting | ripley | rebecca |
22
21
 
23
22
  Notes:
24
23
  - `_author_` means route to the PR author