@yemi33/minions 0.1.276 → 0.1.277
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 -1
- package/dashboard/js/command-center.js +12 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.277 (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 individual bubbles always at the bottom
|
|
10
11
|
- queued messages show as pinned indicator at bottom of chat
|
|
11
12
|
- queued message pill shows on user side (right-aligned)
|
|
12
13
|
- queued messages show as fresh user bubbles when processing starts
|
|
@@ -127,17 +127,18 @@ async function ccSend() {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
function _renderQueueIndicator() {
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
// Remove all existing queue indicators
|
|
131
|
+
document.querySelectorAll('.cc-queue-item').forEach(function(el) { el.remove(); });
|
|
132
132
|
if (_ccQueue.length === 0) return;
|
|
133
133
|
var msgs = document.getElementById('cc-messages');
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
134
|
+
// Add each queued message as its own bubble at the bottom
|
|
135
|
+
_ccQueue.forEach(function(m) {
|
|
136
|
+
var el = document.createElement('div');
|
|
137
|
+
el.className = 'cc-queue-item';
|
|
138
|
+
el.style.cssText = 'padding:8px 12px;border-radius:8px;font-size:12px;line-height:1.6;max-width:95%;align-self:flex-end;background:var(--blue);color:#fff;opacity:0.5;order:9999';
|
|
139
|
+
el.innerHTML = escHtml(m) + '<div style="font-size:9px;opacity:0.7;font-style:italic;margin-top:2px">queued</div>';
|
|
140
|
+
msgs.appendChild(el);
|
|
141
|
+
});
|
|
141
142
|
msgs.scrollTop = msgs.scrollHeight;
|
|
142
143
|
}
|
|
143
144
|
|
|
@@ -229,6 +230,8 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
229
230
|
html += '<span style="color:var(--muted);font-size:11px">Thinking...' + dotPulse + '</span>';
|
|
230
231
|
}
|
|
231
232
|
streamDiv.innerHTML = html;
|
|
233
|
+
// Re-append queue indicators so they stay below the streaming content
|
|
234
|
+
if (_ccQueue.length > 0) _renderQueueIndicator();
|
|
232
235
|
if (msgs.scrollHeight - msgs.scrollTop - msgs.clientHeight < 150) msgs.scrollTop = msgs.scrollHeight;
|
|
233
236
|
}
|
|
234
237
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.277",
|
|
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"
|