@yemi33/minions 0.1.969 → 0.1.971
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 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.971 (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
|
+
- loop queue flush so messages queued during combined send aren't orphaned
|
|
28
29
|
- set lastPushedAt on fix completion to unblock re-review without poller
|
|
29
30
|
- trigger second-pass re-review after fix agent completes
|
|
30
31
|
- update ccInFlightAborts when retry LLM replaces original
|
|
@@ -44,7 +45,6 @@
|
|
|
44
45
|
- use refs/pull/{id}/merge for build status scoping
|
|
45
46
|
- use repositoryId+reasonFilter for ADO build query
|
|
46
47
|
- deduplicate work item creation by title
|
|
47
|
-
- ADO build query uses repositoryId+pullRequest instead of branchName
|
|
48
48
|
|
|
49
49
|
### Other
|
|
50
50
|
- refactor(dashboard): extract _releaseCCTab helper and CC_LOCK_WAIT_MS constant
|
|
@@ -388,14 +388,15 @@ async function ccSend() {
|
|
|
388
388
|
}
|
|
389
389
|
var wasAborted = await _ccDoSend(message, false, originTabId);
|
|
390
390
|
|
|
391
|
-
// Flush queued messages
|
|
391
|
+
// Flush all queued messages at once — combine into a single request.
|
|
392
|
+
// Loop in case user queues more messages while the combined flush is processing.
|
|
392
393
|
while (tab._queue && tab._queue.length > 0) {
|
|
393
394
|
if (wasAborted) {
|
|
394
395
|
await new Promise(function(r) { setTimeout(r, 1500); });
|
|
395
396
|
}
|
|
396
|
-
var
|
|
397
|
+
var combined = tab._queue.splice(0);
|
|
397
398
|
_renderQueueIndicator();
|
|
398
|
-
wasAborted = await _ccDoSend(
|
|
399
|
+
wasAborted = await _ccDoSend(combined.join('\n\n'), false, originTabId);
|
|
399
400
|
}
|
|
400
401
|
}
|
|
401
402
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.971",
|
|
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"
|