@yemi33/minions 0.1.818 → 0.1.819
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 -2
- package/dashboard/js/command-center.js +2 -6
- package/dashboard.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.819 (2026-04-11)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
- verify workflow handles shared-branch plans and existing E2E PRs
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
- cap review→fix cycles at evalMaxIterations (default 3)
|
|
18
18
|
|
|
19
19
|
### Fixes
|
|
20
|
+
- strip ===ACTIONS=== server-side in streaming chunks (not client)
|
|
20
21
|
- strip ===ACTIONS=== from CC streamed text during rendering
|
|
21
22
|
- ccExecuteAction routes action status to correct tab via targetTabId
|
|
22
23
|
- clear _completionNotified on plan resume for re-completion
|
|
@@ -36,7 +37,6 @@
|
|
|
36
37
|
- move ignoredAuthors construction outside inner comment loop (ADO)
|
|
37
38
|
- approved is permanent — no path can ever downgrade it
|
|
38
39
|
- allow fix dispatch on approved PRs (only guard is in updatePrAfterFix)
|
|
39
|
-
- bot comment on approved PR can no longer reset vote
|
|
40
40
|
|
|
41
41
|
### Other
|
|
42
42
|
- docs: diff-aware PRD update playbook + prioritize team memory in shared rules
|
|
@@ -149,10 +149,7 @@ function ccSwitchTab(id) {
|
|
|
149
149
|
html += '</div>';
|
|
150
150
|
}
|
|
151
151
|
var text = tab._streamedText || '';
|
|
152
|
-
if (text)
|
|
153
|
-
var displayRestore = text.indexOf('===ACTIONS===') >= 0 ? text.slice(0, text.indexOf('===ACTIONS===')).trim() : text;
|
|
154
|
-
html += renderMd(displayRestore);
|
|
155
|
-
}
|
|
152
|
+
if (text) html += renderMd(text);
|
|
156
153
|
var ms = Date.now() - restoreStart;
|
|
157
154
|
var label = 'Thinking...';
|
|
158
155
|
for (var pi = phases.length - 1; pi >= 0; pi--) { if (ms >= phases[pi][0]) { label = phases[pi][1]; break; } }
|
|
@@ -513,8 +510,7 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
513
510
|
html += '</div>';
|
|
514
511
|
}
|
|
515
512
|
if (streamedText) {
|
|
516
|
-
|
|
517
|
-
html += renderMd(displayText);
|
|
513
|
+
html += renderMd(streamedText);
|
|
518
514
|
}
|
|
519
515
|
html += '<div style="margin-top:' + (streamedText ? '6px' : '0') + '">' + _getThinkingHtml() + '</div>';
|
|
520
516
|
streamDiv.innerHTML = html;
|
package/dashboard.js
CHANGED
|
@@ -3524,7 +3524,9 @@ What would you like to discuss or change? When you're happy, say "approve" and I
|
|
|
3524
3524
|
allowedTools: 'Bash,Read,Write,Edit,Glob,Grep,WebFetch,WebSearch',
|
|
3525
3525
|
sessionId, effort: streamEffort, direct: true,
|
|
3526
3526
|
onChunk: (text) => {
|
|
3527
|
-
|
|
3527
|
+
const actIdx = text.indexOf('===ACTIONS===');
|
|
3528
|
+
const display = actIdx >= 0 ? text.slice(0, actIdx).trim() : text;
|
|
3529
|
+
try { res.write('data: ' + JSON.stringify({ type: 'chunk', text: display }) + '\n\n'); } catch {}
|
|
3528
3530
|
},
|
|
3529
3531
|
onToolUse: (name, input) => {
|
|
3530
3532
|
try { res.write('data: ' + JSON.stringify({ type: 'tool', name, input: typeof input === 'string' ? input.slice(0, 200) : JSON.stringify(input).slice(0, 200) }) + '\n\n'); } catch {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.819",
|
|
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"
|