@yemi33/minions 0.1.968 → 0.1.969
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 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.969 (2026-04-14)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- add quality standard reminder to all agent and CC prompts
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
- fix dashboard plan-pause nested lock violation (#968)
|
|
26
26
|
|
|
27
27
|
### Fixes
|
|
28
|
+
- set lastPushedAt on fix completion to unblock re-review without poller
|
|
28
29
|
- trigger second-pass re-review after fix agent completes
|
|
29
30
|
- update ccInFlightAborts when retry LLM replaces original
|
|
30
31
|
- skip orphaned LLM retry when client disconnected during CC stream
|
|
@@ -44,7 +45,6 @@
|
|
|
44
45
|
- use repositoryId+reasonFilter for ADO build query
|
|
45
46
|
- deduplicate work item creation by title
|
|
46
47
|
- ADO build query uses repositoryId+pullRequest instead of branchName
|
|
47
|
-
- persist adoPollEnabled/ghPollEnabled in settings save
|
|
48
48
|
|
|
49
49
|
### Other
|
|
50
50
|
- refactor(dashboard): extract _releaseCCTab helper and CC_LOCK_WAIT_MS constant
|
package/engine/lifecycle.js
CHANGED
|
@@ -940,6 +940,8 @@ function updatePrAfterFix(pr, project, source) {
|
|
|
940
940
|
if (!target) return prs;
|
|
941
941
|
// Never downgrade from approved — fix was dispatched but PR is already approved
|
|
942
942
|
if (target.reviewStatus !== 'approved') target.reviewStatus = 'waiting';
|
|
943
|
+
// Advance lastPushedAt so alreadyReviewed resets immediately, without waiting for the poller
|
|
944
|
+
target.lastPushedAt = ts();
|
|
943
945
|
// Always clear pendingFix — a fix dispatch (regardless of source) addresses all pending feedback
|
|
944
946
|
if (target.humanFeedback) target.humanFeedback.pendingFix = false;
|
|
945
947
|
if (source === 'pr-human-feedback') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.969",
|
|
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"
|