@yemi33/minions 0.1.255 → 0.1.256

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,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.255 (2026-04-03)
3
+ ## 0.1.256 (2026-04-03)
4
4
 
5
5
  ### Features
6
6
  - streaming CC responses — text appears as it arrives via SSE
7
7
 
8
8
  ### Fixes
9
+ - remove dead 'data.actions' code from streaming CC path — caused ReferenceError
9
10
  - CC messages no longer show as "queued" after page refresh
10
11
 
11
12
  ## 0.1.253 (2026-04-03)
@@ -234,13 +234,6 @@ async function _ccDoSend(message, skipUserMsg) {
234
234
  } catch { /* incomplete JSON */ }
235
235
  }
236
236
  }
237
-
238
- // Execute actions
239
- if (data.actions && data.actions.length > 0) {
240
- for (const action of data.actions) {
241
- await ccExecuteAction(action);
242
- }
243
- }
244
237
  } catch (e) {
245
238
  clearInterval(ccTimer);
246
239
  thinking.remove();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.255",
3
+ "version": "0.1.256",
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"