@yemi33/minions 0.1.2334 → 0.1.2335

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/engine/queries.js CHANGED
@@ -2461,7 +2461,7 @@ function getPrdInfo(config) {
2461
2461
  const t = planTimings[wi.sourcePlan];
2462
2462
  if (wi.dispatched_at) { const d = new Date(wi.dispatched_at).getTime(); if (!t.firstDispatched || d < t.firstDispatched) t.firstDispatched = d; }
2463
2463
  if (wi.completedAt) { const c = new Date(wi.completedAt).getTime(); if (!t.lastCompleted || c > t.lastCompleted) t.lastCompleted = c; }
2464
- if (wi.status !== 'done') t.allDone = false;
2464
+ if (!DONE_STATUSES.has(wi.status)) t.allDone = false;
2465
2465
  }
2466
2466
 
2467
2467
  const progress = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.2334",
3
+ "version": "0.1.2335",
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"