@yemi33/minions 0.1.260 → 0.1.261
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 +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.261 (2026-04-03)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- real-time token streaming for CC via partial JSON extraction
|
|
7
7
|
|
|
8
8
|
### Fixes
|
|
9
|
+
- streaming CC message bubble matches ccAddMessage styling
|
|
9
10
|
- CC stream clears ccInFlight on client disconnect + defensive thinking.remove
|
|
10
11
|
- remove last evaluate references — eval loop now creates review items
|
|
11
12
|
|
|
@@ -194,7 +194,8 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
194
194
|
clearInterval(ccTimer);
|
|
195
195
|
try { thinking.remove(); } catch { /* may already be removed */ }
|
|
196
196
|
const streamDiv = document.createElement('div');
|
|
197
|
-
streamDiv.className = 'cc-msg
|
|
197
|
+
streamDiv.className = 'cc-msg-assistant';
|
|
198
|
+
streamDiv.style.cssText = 'padding:8px 12px;border-radius:8px;font-size:12px;line-height:1.6;max-width:95%;background:var(--surface2);color:var(--text);align-self:flex-start;border:1px solid var(--border);position:relative';
|
|
198
199
|
streamDiv.innerHTML = '<span style="color:var(--muted);font-size:11px">Thinking...</span>';
|
|
199
200
|
document.getElementById('cc-messages').appendChild(streamDiv);
|
|
200
201
|
let streamedText = '';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.261",
|
|
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"
|