@yemi33/minions 0.1.787 → 0.1.788

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.787 (2026-04-10)
3
+ ## 0.1.788 (2026-04-10)
4
4
 
5
5
  ### Features
6
6
  - cap review→fix cycles at evalMaxIterations (default 3)
7
7
 
8
8
  ### Fixes
9
+ - human feedback fixes are never capped (only minion review→fix loop is)
9
10
  - 5 bugs from comprehensive audit
10
11
  - stale ADO build detection + merge conflict auto-fix for both platforms
11
12
  - don't overwrite reviewStatus when platform vote hasn't propagated
package/engine.js CHANGED
@@ -1683,15 +1683,7 @@ async function discoverFromPrs(config, project) {
1683
1683
  reviewer: 'Human Reviewer',
1684
1684
  review_note: reviewNote,
1685
1685
  }, `Fix PR ${pr.id} — human feedback`, { dispatchKey: key, source: 'pr-human-feedback', pr, branch: pr.branch, project: projMeta });
1686
- if (item) {
1687
- newWork.push(item); setCooldown(key); fixDispatched = true;
1688
- try {
1689
- mutatePullRequests(projectPrPath(project), prs => {
1690
- const target = prs.find(p => p.id === pr.id);
1691
- if (target) target._reviewFixCycles = (target._reviewFixCycles || 0) + 1;
1692
- });
1693
- } catch (e) { log('warn', 'increment review-fix cycles (human): ' + e.message); }
1694
- }
1686
+ if (item) { newWork.push(item); setCooldown(key); fixDispatched = true; }
1695
1687
  }
1696
1688
 
1697
1689
  // PRs with build failures — route to author (has session context from implementing)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.787",
3
+ "version": "0.1.788",
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"