@yemi33/minions 0.1.626 → 0.1.627

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.626 (2026-04-08)
3
+ ## 0.1.627 (2026-04-08)
4
4
 
5
5
  ### Fixes
6
+ - ccAbort clears queue to prevent queued messages firing after stop
6
7
  - add test/check steps and stop condition to work-item playbook
7
8
 
8
9
  ## 0.1.625 (2026-04-08)
@@ -31,6 +31,9 @@ function ccAbort() {
31
31
  _ccAbortController.abort();
32
32
  _ccAbortController = null;
33
33
  }
34
+ // Clear queue so aborted send doesn't drain queued messages
35
+ _ccQueue = [];
36
+ _renderQueueIndicator();
34
37
  }
35
38
 
36
39
  function toggleCommandCenter() {
@@ -158,9 +161,10 @@ async function ccSend() {
158
161
  await _ccDoSend(message);
159
162
 
160
163
  // Drain queue — show each as a fresh user message + process
164
+ // Queue is cleared by ccAbort() if user stops mid-stream
161
165
  while (_ccQueue.length > 0) {
162
166
  const next = _ccQueue.shift();
163
- _renderQueueIndicator(); // update or remove indicator
167
+ _renderQueueIndicator();
164
168
  await _ccDoSend(next);
165
169
  }
166
170
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.626",
3
+ "version": "0.1.627",
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"