@yemi33/minions 0.1.1833 → 0.1.1834

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,8 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.1833 (2026-05-10)
3
+ ## 0.1.1834 (2026-05-10)
4
4
 
5
5
  ### Features
6
+ - process all CC dispatch actions (#2262)
6
7
  - remove duplicate action error box (#2259)
7
8
 
8
9
  ## 0.1.1832 (2026-05-10)
package/dashboard.js CHANGED
@@ -2745,15 +2745,23 @@ function _messageExplicitlyRequestsMonitoring(message) {
2745
2745
 
2746
2746
  function _isDispatchLikeCCAction(action) {
2747
2747
  const type = String(action?.type || '').trim().toLowerCase();
2748
- return type === 'dispatch' || ['fix', 'explore', 'review', 'test'].includes(type);
2748
+ return type === 'dispatch' || CC_DISPATCH_ACTION_ALIASES.has(type);
2749
2749
  }
2750
2750
 
2751
2751
  function _filterImplicitPostDispatchActions(actions, humanMessage) {
2752
2752
  if (!Array.isArray(actions) || actions.length === 0) return [];
2753
2753
  if (_messageExplicitlyRequestsMonitoring(humanMessage)) return actions;
2754
- const dispatchIdx = actions.findIndex(_isDispatchLikeCCAction);
2755
- if (dispatchIdx < 0) return actions;
2756
- return actions.slice(0, dispatchIdx + 1);
2754
+ let sawDispatch = false;
2755
+ const filtered = [];
2756
+ for (const action of actions) {
2757
+ if (_isDispatchLikeCCAction(action)) {
2758
+ sawDispatch = true;
2759
+ filtered.push(action);
2760
+ continue;
2761
+ }
2762
+ if (!sawDispatch) filtered.push(action);
2763
+ }
2764
+ return filtered;
2757
2765
  }
2758
2766
 
2759
2767
  // ── /loop → create-watch safety net ──────────────────────────────────────────
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-10T01:08:31.039Z"
4
+ "cachedAt": "2026-05-10T01:09:52.676Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1833",
3
+ "version": "0.1.1834",
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"