@yemi33/minions 0.1.1832 → 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 +6 -0
- package/dashboard.js +12 -4
- package/engine/copilot-models.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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' ||
|
|
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
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
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 ──────────────────────────────────────────
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
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"
|