@yemi33/minions 0.1.1604 → 0.1.1605
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 +4 -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.1605 (2026-04-28)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- match runtime tags to actual logos (pixel-crab Claude, mascot Copilot)
|
|
7
7
|
- replace runtime text tag with inline SVG logos
|
|
8
8
|
|
|
9
9
|
### Fixes
|
|
10
|
+
- preserve reconnect stream state
|
|
10
11
|
- preserve copilot cc action blocks
|
|
11
12
|
- improve copilot command center streaming
|
|
12
13
|
- guard runtime model races
|
|
@@ -612,7 +612,8 @@ async function _ccDoSend(message, skipUserMsg, forceTabId) {
|
|
|
612
612
|
if (evt.sessionReset) {
|
|
613
613
|
addMsg('system', '<div style="text-align:center;padding:6px 12px;font-size:11px;color:var(--muted);background:var(--surface2);border-radius:6px;margin:4px 0">Minions was updated — started a fresh session with latest context.</div>', false, activeTabId);
|
|
614
614
|
}
|
|
615
|
-
var
|
|
615
|
+
var finalText = _ccMergeStreamText(streamedText, evt.text || '');
|
|
616
|
+
var rendered = renderMd(finalText || streamedText || '');
|
|
616
617
|
addMsg('assistant', rendered + _ccElapsedFooter('{seconds}s'));
|
|
617
618
|
if (evt.sessionId !== undefined) {
|
|
618
619
|
var originTab = _ccTabs.find(function(t) { return t.id === activeTabId; });
|
|
@@ -683,8 +684,9 @@ async function _ccDoSend(message, skipUserMsg, forceTabId) {
|
|
|
683
684
|
break;
|
|
684
685
|
}
|
|
685
686
|
reconnectAttempts++;
|
|
687
|
+
streamedText = '';
|
|
686
688
|
toolsUsed = [];
|
|
687
|
-
if (activeTab) activeTab._toolsUsed = [];
|
|
689
|
+
if (activeTab) { activeTab._streamedText = ''; activeTab._toolsUsed = []; }
|
|
688
690
|
streamStatusNote = 'Connection interrupted — reattaching to the live response...';
|
|
689
691
|
updateStreamDiv();
|
|
690
692
|
await new Promise(function(r) { setTimeout(r, 1000 * reconnectAttempts); });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1605",
|
|
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"
|