@yemi33/minions 0.1.969 → 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 CHANGED
@@ -1,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.969 (2026-04-14)
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,7 +23,6 @@
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
28
  - set lastPushedAt on fix completion to unblock re-review without poller
@@ -388,14 +388,14 @@ async function ccSend() {
388
388
  }
389
389
  var wasAborted = await _ccDoSend(message, false, originTabId);
390
390
 
391
- // Flush queued messages to the ORIGINAL tab, even if user switched tabs
392
- while (tab._queue && tab._queue.length > 0) {
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 next = tab._queue.shift();
396
+ var combined = tab._queue.splice(0);
397
397
  _renderQueueIndicator();
398
- wasAborted = await _ccDoSend(next, false, originTabId);
398
+ await _ccDoSend(combined.join('\n\n'), false, originTabId);
399
399
  }
400
400
  }
401
401
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.969",
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"