@yemi33/minions 0.1.336 → 0.1.337

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.336 (2026-04-03)
3
+ ## 0.1.337 (2026-04-03)
4
4
 
5
5
  ### Fixes
6
+ - completed dispatch stat shows actual count instead of capped 20
6
7
  - CC session auto-invalidated when system prompt changes after restart
7
8
  - clear stale buildStatus when PRs are merged or abandoned
8
9
 
@@ -75,7 +75,7 @@ function renderDispatch(dispatch) {
75
75
  stats.innerHTML =
76
76
  '<div class="dispatch-stat"><div class="dispatch-stat-num yellow">' + (dispatch.active || []).length + '</div><div class="dispatch-stat-label">Active</div></div>' +
77
77
  '<div class="dispatch-stat"><div class="dispatch-stat-num blue">' + (dispatch.pending || []).length + '</div><div class="dispatch-stat-label">Pending</div></div>' +
78
- '<div class="dispatch-stat"><div class="dispatch-stat-num green">' + (dispatch.completed || []).length + '</div><div class="dispatch-stat-label">Completed</div></div>';
78
+ '<div class="dispatch-stat"><div class="dispatch-stat-num green">' + (dispatch.completedTotal || (dispatch.completed || []).length) + '</div><div class="dispatch-stat-label">Completed</div></div>';
79
79
 
80
80
  // Active
81
81
  const activeEl = document.getElementById('dispatch-active');
package/engine/queries.js CHANGED
@@ -55,7 +55,9 @@ function getDispatch() {
55
55
 
56
56
  function getDispatchQueue() {
57
57
  const d = getDispatch();
58
- d.completed = (d.completed || []).slice(-20);
58
+ const allCompleted = d.completed || [];
59
+ d.completedTotal = allCompleted.length;
60
+ d.completed = allCompleted.slice(-20);
59
61
  return d;
60
62
  }
61
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.336",
3
+ "version": "0.1.337",
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"