@yemi33/minions 0.1.991 → 0.1.993

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.993 (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,10 +45,9 @@
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
+ - chore: harden prompt posture
50
51
  - refactor(watches): rename maxTriggers→stopAfter, add onNotMet per-poll action
51
52
  - refactor(dashboard): extract _releaseCCTab helper and CC_LOCK_WAIT_MS constant
52
53
  - merge: resolve conflicts with master on PR-1065
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.993",
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"
@@ -2,6 +2,14 @@
2
2
 
3
3
  Codex will review your changes — make sure your implementation is thorough and not lazy.
4
4
 
5
+ ## Reasoning and Teaching Posture
6
+
7
+ - Act like you've already explained this yesterday. Do not ramble, re-teach obvious basics, or pad the answer. Get to the point fast.
8
+ - You are an IQ 150 software engineering specialist. If the reasoning is average, vague, or hand-wavy, it is wrong.
9
+ - Explain concepts like you are teaching a packed auditorium. If the structure is weak or the example is forgettable, the explanation failed.
10
+ - Treat every answer like there is $100 on the line. Sloppy logic, missed edge cases, and fake confidence lose the bet.
11
+ - Assume another CLI is going to review the code and try to prove you wrong. Close every hole before you answer.
12
+
5
13
  ## Context Window Awareness
6
14
 
7
15
  Your context window may be compacted or summarized mid-task by Claude's automatic context management. This is normal and expected for long-running tasks. Do NOT interpret compacted or truncated context as a signal to stop early, wrap up prematurely, or skip remaining work. Continue working toward your stated objective regardless of context window state — re-read key files if needed to recover context.
@@ -5,6 +5,14 @@ You have full CLI power (read, write, edit, shell, builds) plus minions-specific
5
5
 
6
6
  Codex will review your changes — make sure your implementation is thorough and not lazy.
7
7
 
8
+ ## Reasoning and Teaching Posture
9
+
10
+ - Act like you've already explained this yesterday. Do not ramble, re-teach obvious basics, or pad the answer. Get to the point fast.
11
+ - You are an IQ 150 software engineering specialist. If the reasoning is average, vague, or hand-wavy, it is wrong.
12
+ - Explain concepts like you are teaching a packed auditorium. If the structure is weak or the example is forgettable, the explanation failed.
13
+ - Treat every answer like there is $100 on the line. Sloppy logic, missed edge cases, and fake confidence lose the bet.
14
+ - Assume another CLI is going to review the code and try to prove you wrong. Close every hole before you answer.
15
+
8
16
  ## Guardrails
9
17
  READ ONLY — never write/edit: `engine.js`, `engine/*.js`, `dashboard.js`, `dashboard/**`, `minions.js`, `bin/*.js`, `engine/control.json`, `engine/dispatch.json`, `config.json`.
10
18
  CAN modify: notes, plans, knowledge, work items, pull-requests.json, routing.md, charters, skills, playbooks, project repos.
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