@yemi33/minions 0.1.274 → 0.1.275

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,12 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.274 (2026-04-03)
3
+ ## 0.1.275 (2026-04-03)
4
4
 
5
5
  ### Features
6
6
  - sending a new CC message aborts the current request instead of queuing
7
7
  - CC streaming shows cumulative tool list with loading dots
8
8
 
9
9
  ### Fixes
10
+ - queued message pill shows on user side (right-aligned)
10
11
  - queued messages show as fresh user bubbles when processing starts
11
12
  - restore CC message queuing + scroll to queued message when processing
12
13
  - remove 'minions up' alias, keep 'minions restart' only
@@ -113,7 +113,7 @@ async function ccSend() {
113
113
  // If already processing, queue the message — don't show user bubble yet
114
114
  if (_ccSending) {
115
115
  _ccQueue.push(message);
116
- ccAddMessage('assistant', '<span class="cc-queued-pill" style="color:var(--muted);font-size:10px">Queued: "' + escHtml(message.length > 40 ? message.slice(0, 40) + '...' : message) + '"</span>');
116
+ ccAddMessage('user', '<span class="cc-queued-pill" style="opacity:0.6;font-size:11px">' + escHtml(message) + '<br><span style="font-size:9px;font-style:italic">queued</span></span>');
117
117
  return;
118
118
  }
119
119
  await _ccDoSend(message);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.274",
3
+ "version": "0.1.275",
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"