@yemi33/minions 0.1.989 → 0.1.990
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 +2 -2
- package/engine.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.990 (2026-04-15)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- gate review auto-dispatch on adoPollEnabled and evalLoop config flags (#1092)
|
|
6
7
|
- remove DEFAULTS alias from timeout.js — standardize to ENGINE_DEFAULTS
|
|
7
8
|
- complete watches management — new conditions, CC actions, PROJECTS fix (#1103)
|
|
8
9
|
- fix misleading poll frequency field labels in settings modal (#1099)
|
|
@@ -22,7 +23,6 @@
|
|
|
22
23
|
- update render-work-items.js output viewer to use renderAgentOutput
|
|
23
24
|
- update detail-panel.js Output Log tab to use renderAgentOutput
|
|
24
25
|
- Update command-center.js to capture tool inputs and use formatted summaries
|
|
25
|
-
- certificate-based auth for Teams integration (#1027)
|
|
26
26
|
|
|
27
27
|
### Fixes
|
|
28
28
|
- updatePrAfterReview preserves fixedAt when writing minionsReview
|
package/engine.js
CHANGED
|
@@ -1995,7 +1995,7 @@ async function discoverFromPrs(config, project) {
|
|
|
1995
1995
|
// or when no minions review has completed yet (e.g. human-feedback-only fix path).
|
|
1996
1996
|
const fixedAfterReview = !!(pr.minionsReview?.fixedAt &&
|
|
1997
1997
|
(!pr.lastReviewedAt || pr.minionsReview.fixedAt > pr.lastReviewedAt));
|
|
1998
|
-
const needsReReview =
|
|
1998
|
+
const needsReReview = reviewEnabled && reviewStatus === 'waiting' &&
|
|
1999
1999
|
fixedAfterReview && !evalEscalated;
|
|
2000
2000
|
if (needsReReview) {
|
|
2001
2001
|
const key = `rereview-${project?.name || 'default'}-${pr.id}`;
|
|
@@ -2020,7 +2020,7 @@ async function discoverFromPrs(config, project) {
|
|
|
2020
2020
|
} catch {}
|
|
2021
2021
|
continue;
|
|
2022
2022
|
}
|
|
2023
|
-
} catch (e) { log('warn', `Pre-dispatch vote check for ${pr.id}: ${e.message}`); }
|
|
2023
|
+
} catch (e) { log('warn', `Pre-dispatch vote check for ${pr.id}: ${e.message} — skipping dispatch`); continue; }
|
|
2024
2024
|
|
|
2025
2025
|
const agentId = resolveAgent('review', config);
|
|
2026
2026
|
if (!agentId) continue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.990",
|
|
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"
|