@yemi33/minions 0.1.286 → 0.1.287

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,10 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.286 (2026-04-03)
3
+ ## 0.1.287 (2026-04-03)
4
4
 
5
5
  ### Features
6
6
  - all doc-chats use Sonnet with full tools (agent change)
7
7
 
8
+ ### Fixes
9
+ - engine sidebar badge only triggers on new dispatch errors
10
+
8
11
  ## 0.1.285 (2026-04-03)
9
12
 
10
13
  ### Fixes
@@ -11,7 +11,7 @@ const _pageCounters = {
11
11
  meetings: function(d) { return (d.meetings || []).reduce(function(s, m) { return s + (m.round || 0); }, 0); },
12
12
  pipelines: function(d) { return (d.pipelines || []).reduce(function(s, p) { return s + (p.runs || []).length; }, 0); },
13
13
  schedule: function(d) { return (d.schedules || []).length; },
14
- engine: function(d) { return (d.dispatch?.active || []).length; },
14
+ engine: function(d) { return (d.dispatch?.completed || []).filter(function(c) { return c.result === 'error'; }).length; },
15
15
  };
16
16
  let _prevCounts = {};
17
17
  function _detectPageChanges(data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.286",
3
+ "version": "0.1.287",
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"