@yemi33/minions 0.1.817 → 0.1.818
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 +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.818 (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=== from CC streamed text during rendering
|
|
20
21
|
- ccExecuteAction routes action status to correct tab via targetTabId
|
|
21
22
|
- clear _completionNotified on plan resume for re-completion
|
|
22
23
|
- handle local-only dependency branches in dep merge (closes #782) (#825)
|
|
@@ -36,7 +37,6 @@
|
|
|
36
37
|
- approved is permanent — no path can ever downgrade it
|
|
37
38
|
- allow fix dispatch on approved PRs (only guard is in updatePrAfterFix)
|
|
38
39
|
- bot comment on approved PR can no longer reset vote
|
|
39
|
-
- remove redundant 'PR' prefix from dispatch labels (id already has it)
|
|
40
40
|
|
|
41
41
|
### Other
|
|
42
42
|
- docs: diff-aware PRD update playbook + prioritize team memory in shared rules
|
|
@@ -149,7 +149,10 @@ function ccSwitchTab(id) {
|
|
|
149
149
|
html += '</div>';
|
|
150
150
|
}
|
|
151
151
|
var text = tab._streamedText || '';
|
|
152
|
-
if (text)
|
|
152
|
+
if (text) {
|
|
153
|
+
var displayRestore = text.indexOf('===ACTIONS===') >= 0 ? text.slice(0, text.indexOf('===ACTIONS===')).trim() : text;
|
|
154
|
+
html += renderMd(displayRestore);
|
|
155
|
+
}
|
|
153
156
|
var ms = Date.now() - restoreStart;
|
|
154
157
|
var label = 'Thinking...';
|
|
155
158
|
for (var pi = phases.length - 1; pi >= 0; pi--) { if (ms >= phases[pi][0]) { label = phases[pi][1]; break; } }
|
|
@@ -510,7 +513,8 @@ async function _ccDoSend(message, skipUserMsg) {
|
|
|
510
513
|
html += '</div>';
|
|
511
514
|
}
|
|
512
515
|
if (streamedText) {
|
|
513
|
-
|
|
516
|
+
var displayText = streamedText.indexOf('===ACTIONS===') >= 0 ? streamedText.slice(0, streamedText.indexOf('===ACTIONS===')).trim() : streamedText;
|
|
517
|
+
html += renderMd(displayText);
|
|
514
518
|
}
|
|
515
519
|
html += '<div style="margin-top:' + (streamedText ? '6px' : '0') + '">' + _getThinkingHtml() + '</div>';
|
|
516
520
|
streamDiv.innerHTML = html;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.818",
|
|
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"
|