@yemi33/minions 0.1.2058 → 0.1.2059

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.
@@ -374,7 +374,14 @@ function _processStatusUpdate(data) {
374
374
  .catch(function () { /* keep render even if managed fetch failed — getLastItems() returns the last good cache (or []) */ })
375
375
  .then(function () { try { renderKeepProcesses(); } catch {} });
376
376
  }
377
- if (_workItemsChanged) renderWorkItems(data.workItems || []);
377
+ // workItems is exempt from the _changed gate, mirroring the agents fix
378
+ // (W-mpn7keq9000302c9). Real-time correctness on /work — a CC-dispatched
379
+ // work item should appear within one poll, not "after a hard refresh" —
380
+ // beats the cost of re-rendering one 20-row table per 4s tick. The
381
+ // _workItemsChanged flag is still captured above so the F1/F3 cross-slice
382
+ // triggers below (renderPrs + renderPlans) still gate correctly, and the
383
+ // diag ring-buffer keeps seeing the per-tick changed signal.
384
+ renderWorkItems(data.workItems || []);
378
385
  if (_changed('skills', data.skills)) renderSkills(data.skills || []);
379
386
  if (_changed('mcpServers', data.mcpServers)) renderMcpServers(data.mcpServers || []);
380
387
  if (_changed('schedules', data.schedules)) renderSchedules(data.schedules || []);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2058",
3
+ "version": "0.1.2059",
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"