@yemi33/minions 0.1.811 → 0.1.812
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/dashboard/js/command-center.js +4 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.812 (2026-04-11)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- Restructure decompose.md sub-task output format (#655)
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
- cap review→fix cycles at evalMaxIterations (default 3)
|
|
12
12
|
|
|
13
13
|
### Fixes
|
|
14
|
+
- CC queue drain uses combined flush, not one-at-a-time while loop (#818)
|
|
14
15
|
- allow agents to explain rationale instead of blindly fixing review feedback
|
|
15
16
|
- don't URL-encode ADO branchName filter (refs/heads/ format expected raw)
|
|
16
17
|
- ADO build query filters by source branch (not all org builds)
|
|
@@ -30,7 +31,6 @@
|
|
|
30
31
|
- repair invalid JSON in daily-arch-improvement pipeline
|
|
31
32
|
- flush queued CC messages as single combined request
|
|
32
33
|
- human feedback fixes are never capped (only minion review→fix loop is)
|
|
33
|
-
- 5 bugs from comprehensive audit
|
|
34
34
|
|
|
35
35
|
## 0.1.782 (2026-04-10)
|
|
36
36
|
|
|
@@ -378,14 +378,11 @@ async function ccSend() {
|
|
|
378
378
|
}
|
|
379
379
|
var wasAborted = await _ccDoSend(message);
|
|
380
380
|
|
|
381
|
-
//
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
await new Promise(function(r) { setTimeout(r, 600); });
|
|
385
|
-
}
|
|
386
|
-
var next = tab._queue.shift();
|
|
381
|
+
// Flush queued messages — combine into single request
|
|
382
|
+
if (tab._queue && tab._queue.length > 0) {
|
|
383
|
+
var combined = tab._queue.splice(0).join('\n\n');
|
|
387
384
|
_renderQueueIndicator();
|
|
388
|
-
|
|
385
|
+
await _ccDoSend(combined);
|
|
389
386
|
}
|
|
390
387
|
}
|
|
391
388
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.812",
|
|
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"
|