@yemi33/minions 0.1.261 → 0.1.262
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 +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.262 (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 done event includes copy button matching ccAddMessage
|
|
9
10
|
- streaming CC message bubble matches ccAddMessage styling
|
|
10
11
|
- CC stream clears ccInFlight on client disconnect + defensive thinking.remove
|
|
11
12
|
- remove last evaluate references — eval loop now creates review items
|
|
@@ -220,9 +220,10 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
220
220
|
const msgs = document.getElementById('cc-messages');
|
|
221
221
|
if (msgs.scrollHeight - msgs.scrollTop - msgs.clientHeight < 150) msgs.scrollTop = msgs.scrollHeight;
|
|
222
222
|
} else if (evt.type === 'done') {
|
|
223
|
-
// Final result — replace with rendered markdown +
|
|
223
|
+
// Final result — replace with rendered markdown + copy button + timer
|
|
224
224
|
const ccElapsed = Math.round((Date.now() - ccStartTime) / 1000);
|
|
225
|
-
|
|
225
|
+
const finalHtml = renderMd(evt.text || streamedText || '');
|
|
226
|
+
streamDiv.innerHTML = llmCopyBtn() + finalHtml +
|
|
226
227
|
'<div style="font-size:9px;color:var(--muted);margin-top:6px;display:flex;justify-content:flex-end;padding-right:30px">' + ccElapsed + 's</div>';
|
|
227
228
|
_ccMessages.push({ role: 'assistant', html: streamDiv.innerHTML });
|
|
228
229
|
if (evt.sessionId) { _ccSessionId = evt.sessionId; ccSaveState(); ccUpdateSessionIndicator(); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.262",
|
|
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"
|