@yemi33/minions 0.1.817 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.817 (2026-04-11)
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,8 @@
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)
21
+ - strip ===ACTIONS=== from CC streamed text during rendering
20
22
  - ccExecuteAction routes action status to correct tab via targetTabId
21
23
  - clear _completionNotified on plan resume for re-completion
22
24
  - handle local-only dependency branches in dep merge (closes #782) (#825)
@@ -35,8 +37,6 @@
35
37
  - move ignoredAuthors construction outside inner comment loop (ADO)
36
38
  - approved is permanent — no path can ever downgrade it
37
39
  - allow fix dispatch on approved PRs (only guard is in updatePrAfterFix)
38
- - 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
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
- try { res.write('data: ' + JSON.stringify({ type: 'chunk', text }) + '\n\n'); } catch {}
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.817",
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"