@yemi33/minions 0.1.269 → 0.1.270
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/render-other.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.270 (2026-04-03)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- CC streaming shows cumulative tool list with loading dots
|
|
7
7
|
|
|
8
8
|
### Fixes
|
|
9
|
+
- agent and engine usage tables both have 7 columns for alignment
|
|
9
10
|
- streaming CC was popping user messages from _ccMessages
|
|
10
11
|
- process remaining SSE buffer after stream ends + fallback finalization
|
|
11
12
|
- Thinking... indicator shows alongside tool calls until text arrives
|
|
@@ -203,15 +203,16 @@ function renderTokenUsage(metrics) {
|
|
|
203
203
|
if (engineEntries.length > 0) {
|
|
204
204
|
const labels = { 'consolidation': 'Consolidation', 'command-center': 'Command Center', 'doc-chat': 'Doc Chat', 'kb-sweep': 'KB Sweep', 'schedule-parse': 'Schedule Parse' };
|
|
205
205
|
html += '<div style="font-size:10px;color:var(--muted);margin:12px 0 4px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px">Engine Usage</div>';
|
|
206
|
-
html += '<table class="token-agent-table"><thead><tr><th>Operation</th><th>
|
|
206
|
+
html += '<table class="token-agent-table"><thead><tr><th>Operation</th><th>Calls</th><th>Cost</th><th>Input</th><th>Output</th><th>Cache</th><th>$/call</th></tr></thead><tbody>';
|
|
207
207
|
for (const [cat, e] of engineEntries.sort((a, b) => (b[1].costUsd || 0) - (a[1].costUsd || 0))) {
|
|
208
208
|
const perCall = (e.calls || 0) > 0 ? fmtCost((e.costUsd || 0) / e.calls) : '-';
|
|
209
209
|
html += '<tr>' +
|
|
210
210
|
'<td style="font-weight:600">' + escHtml(labels[cat] || cat) + '</td>' +
|
|
211
|
-
'<td>' + fmtCost(e.costUsd || 0) + '</td>' +
|
|
212
211
|
'<td>' + (e.calls || 0) + '</td>' +
|
|
212
|
+
'<td>' + fmtCost(e.costUsd || 0) + '</td>' +
|
|
213
213
|
'<td>' + fmtTokens(e.inputTokens || 0) + '</td>' +
|
|
214
214
|
'<td>' + fmtTokens(e.outputTokens || 0) + '</td>' +
|
|
215
|
+
'<td>' + fmtTokens(e.cacheRead || 0) + '</td>' +
|
|
215
216
|
'<td style="color:var(--muted)">' + perCall + '</td>' +
|
|
216
217
|
'</tr>';
|
|
217
218
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.270",
|
|
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"
|