@yemi33/minions 0.1.980 → 0.1.981
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 +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.981 (2026-04-15)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- gate build failure auto-fix behind autoFixBuilds flag
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
- add /api/work-items/reopen endpoint and reopen-work-item CC action (#982)
|
|
26
26
|
|
|
27
27
|
### Fixes
|
|
28
|
+
- build fix sets fixDispatched to block same-tick conflict fix
|
|
28
29
|
- ENGINE_DEFAULTS undefined in tick + playbook empty-var false positives
|
|
29
30
|
- defer review setCooldown to post-gating in discoverWork
|
|
30
31
|
- move review verdict check before updateWorkItemStatus(DONE)
|
|
@@ -44,7 +45,6 @@
|
|
|
44
45
|
- fix tabId scope and close-event lock race in CC handlers
|
|
45
46
|
- defer setCooldown to post-gating in discoverWork
|
|
46
47
|
- fix CC queued message 'already processing' and thinking UX stacking
|
|
47
|
-
- enforce --timeout 1 on all azureauth calls to prevent agent orphans (#1063)
|
|
48
48
|
|
|
49
49
|
### Other
|
|
50
50
|
- refactor(watches): rename maxTriggers→stopAfter, add onNotMet per-poll action
|
package/engine.js
CHANGED
|
@@ -2085,7 +2085,7 @@ async function discoverFromPrs(config, project) {
|
|
|
2085
2085
|
review_note: reviewNote,
|
|
2086
2086
|
}, `Fix build failure on ${pr.id}: ${pr.title || ''}`, { dispatchKey: key, source: 'pr', pr, branch: pr.branch, project: projMeta });
|
|
2087
2087
|
if (item) {
|
|
2088
|
-
newWork.push(item); setCooldown(key);
|
|
2088
|
+
newWork.push(item); setCooldown(key); fixDispatched = true;
|
|
2089
2089
|
// Increment build fix attempts counter
|
|
2090
2090
|
try {
|
|
2091
2091
|
const prPath = projectPrPath(project);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.981",
|
|
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"
|