@yemi33/minions 0.1.986 → 0.1.987
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/lifecycle.js +2 -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.987 (2026-04-15)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- complete watches management — new conditions, CC actions, PROJECTS fix (#1103)
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
- Create render-utils.js with shared formatting helpers
|
|
26
26
|
|
|
27
27
|
### Fixes
|
|
28
|
+
- updatePrAfterReview preserves fixedAt when writing minionsReview
|
|
28
29
|
- replace undefined PROJECTS with config.projects in checkWatches (#1104)
|
|
29
30
|
- fix syncPrsFromOutput skipping tool_result lines where PR URLs live (#1100)
|
|
30
31
|
- Remove autoReview flag — consolidate into evalLoop (#1093)
|
|
@@ -44,7 +45,6 @@
|
|
|
44
45
|
- trigger second-pass re-review after fix agent completes
|
|
45
46
|
- update ccInFlightAborts when retry LLM replaces original
|
|
46
47
|
- skip orphaned LLM retry when client disconnected during CC stream
|
|
47
|
-
- restore queue flush after abort — queued messages are user intent
|
|
48
48
|
|
|
49
49
|
### Other
|
|
50
50
|
- refactor(watches): rename maxTriggers→stopAfter, add onNotMet per-poll action
|
package/engine/lifecycle.js
CHANGED
|
@@ -908,7 +908,8 @@ async function updatePrAfterReview(agentId, pr, project, config, resultSummary)
|
|
|
908
908
|
target.minionsReview = {
|
|
909
909
|
reviewer: reviewerName,
|
|
910
910
|
reviewedAt: ts(),
|
|
911
|
-
note: resultSummary || completedEntry?.task || ''
|
|
911
|
+
note: resultSummary || completedEntry?.task || '',
|
|
912
|
+
...(target.minionsReview?.fixedAt ? { fixedAt: target.minionsReview.fixedAt } : {}),
|
|
912
913
|
};
|
|
913
914
|
updatedTarget = { ...pr, ...target };
|
|
914
915
|
return prs;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.987",
|
|
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"
|