@yemi33/minions 0.1.1735 → 0.1.1736

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1736 (2026-05-05)
4
+
5
+ ### Other
6
+ - test(lifecycle): add unit tests for review-verdict, completion-field, and item-completed parsers (#2093)
7
+
3
8
  ## 0.1.1735 (2026-05-05)
4
9
 
5
10
  ### Other
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "runtime": "copilot",
3
3
  "models": null,
4
- "cachedAt": "2026-05-05T21:22:01.417Z"
4
+ "cachedAt": "2026-05-05T21:38:46.577Z"
5
5
  }
@@ -475,7 +475,8 @@ function resolveWorkItemPath(meta) {
475
475
 
476
476
  /** Check if a work item is in a terminal completed state. */
477
477
  function isItemCompleted(item) {
478
- return item.status === WI_STATUS.DONE || !!item.completedAt;
478
+ if (!item || typeof item !== 'object') return false;
479
+ return DONE_STATUSES.has(item.status) || !!item.completedAt;
479
480
  }
480
481
 
481
482
  // ─── Work Item Status ────────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1735",
3
+ "version": "0.1.1736",
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"