@yemi33/minions 0.1.277 → 0.1.278
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 +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.278 (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
|
+
- thinking indicator persists alongside streamed text until done
|
|
10
11
|
- queued messages show as individual bubbles always at the bottom
|
|
11
12
|
- queued messages show as pinned indicator at bottom of chat
|
|
12
13
|
- queued message pill shows on user side (right-aligned)
|
|
@@ -226,9 +226,8 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
226
226
|
}
|
|
227
227
|
if (streamedText) {
|
|
228
228
|
html += renderMd(streamedText);
|
|
229
|
-
} else {
|
|
230
|
-
html += '<span style="color:var(--muted);font-size:11px">Thinking...' + dotPulse + '</span>';
|
|
231
229
|
}
|
|
230
|
+
html += '<div style="margin-top:' + (streamedText ? '6px' : '0') + '"><span style="color:var(--muted);font-size:11px">Thinking...' + dotPulse + '</span></div>';
|
|
232
231
|
streamDiv.innerHTML = html;
|
|
233
232
|
// Re-append queue indicators so they stay below the streaming content
|
|
234
233
|
if (_ccQueue.length > 0) _renderQueueIndicator();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.278",
|
|
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"
|