@yemi33/minions 0.1.273 → 0.1.274

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.273 (2026-04-03)
3
+ ## 0.1.274 (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 messages show as fresh user bubbles when processing starts
10
11
  - restore CC message queuing + scroll to queued message when processing
11
12
  - remove 'minions up' alias, keep 'minions restart' only
12
13
  - agent and engine usage tables both have 7 columns for alignment
@@ -110,27 +110,25 @@ async function ccSend() {
110
110
  if (!message) return;
111
111
  input.value = '';
112
112
 
113
- // If already processing, queue the message
113
+ // If already processing, queue the message — don't show user bubble yet
114
114
  if (_ccSending) {
115
115
  _ccQueue.push(message);
116
- ccAddMessage('user', escHtml(message));
117
- ccAddMessage('assistant', '<span class="cc-queued-pill" style="color:var(--muted);font-size:10px">Queued — will send after current request</span>');
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>');
118
117
  return;
119
118
  }
120
119
  await _ccDoSend(message);
121
120
 
122
- // Drain queue — process queued messages one by one
121
+ // Drain queue — show each as a fresh user message + process
123
122
  while (_ccQueue.length > 0) {
124
123
  const next = _ccQueue.shift();
125
- // Remove the "Queued" pill for this message (user message bubble stays)
124
+ // Remove the "Queued" pill
126
125
  const msgs = document.getElementById('cc-messages');
127
126
  const queuedPills = msgs.querySelectorAll('.cc-queued-pill');
128
127
  for (const pill of queuedPills) {
129
128
  if (pill.closest('div')) { pill.closest('div').remove(); break; }
130
129
  }
131
- // Scroll to make the queued user message visible before processing
132
- msgs.scrollTop = msgs.scrollHeight;
133
- await _ccDoSend(next, true); // user message already shown when queued
130
+ // Show as a normal user message being sent now
131
+ await _ccDoSend(next);
134
132
  }
135
133
  }
136
134
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.273",
3
+ "version": "0.1.274",
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"