@yemi33/minions 0.1.968 → 0.1.970
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 +3 -3
- package/dashboard/js/command-center.js +4 -4
- package/engine/lifecycle.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.970 (2026-04-14)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
|
+
- flush queued CC messages as single combined request
|
|
6
7
|
- add quality standard reminder to all agent and CC prompts
|
|
7
8
|
- surface in-flight tool calls in lastAction (#1064)
|
|
8
9
|
- wire agentBusyReassignMs into settings UI and persist
|
|
@@ -22,9 +23,9 @@
|
|
|
22
23
|
- fix dep re-merge failure on retry with existing commits (#977)
|
|
23
24
|
- audit and harden log buffering implementation (#971)
|
|
24
25
|
- replace magic string 'active' with PR_STATUS.ACTIVE in lifecycle.js (#969)
|
|
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
|
|
@@ -388,14 +388,14 @@ async function ccSend() {
|
|
|
388
388
|
}
|
|
389
389
|
var wasAborted = await _ccDoSend(message, false, originTabId);
|
|
390
390
|
|
|
391
|
-
// Flush queued messages
|
|
392
|
-
|
|
391
|
+
// Flush all queued messages at once — combine into a single request
|
|
392
|
+
if (tab._queue && tab._queue.length > 0) {
|
|
393
393
|
if (wasAborted) {
|
|
394
394
|
await new Promise(function(r) { setTimeout(r, 1500); });
|
|
395
395
|
}
|
|
396
|
-
var
|
|
396
|
+
var combined = tab._queue.splice(0);
|
|
397
397
|
_renderQueueIndicator();
|
|
398
|
-
|
|
398
|
+
await _ccDoSend(combined.join('\n\n'), false, originTabId);
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
401
|
|
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.970",
|
|
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"
|