@yemi33/minions 0.1.661 → 0.1.663

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.661 (2026-04-09)
3
+ ## 0.1.663 (2026-04-09)
4
4
 
5
5
  ### Fixes
6
+ - include agent and failReason in PRD progress items mapping
6
7
  - skip unused config read in fast poll, fix timer cleanup variable name
7
8
  - retry button broken for project-level work items, add _source field
8
9
  - use PowerShell instead of wmic for process kill on Windows 11
package/engine/queries.js CHANGED
@@ -896,6 +896,7 @@ function getPrdInfo(config) {
896
896
  prs: prdToPr[i.id] || [], depends_on: i.depends_on || [],
897
897
  project: i.project || '', source: i._source || '', planSummary: i._planSummary || '', planProject: i._planProject || '', planStatus: i._planStatus || 'active', _archived: i._archived || false, sourcePlan: i._sourcePlan || '',
898
898
  planStale: i._planStale || false, lastSyncedFromPlan: i._lastSyncedFromPlan || null, prdUpdatedAt: i._prdUpdatedAt || null, prdCompletedAt: i._prdCompletedAt || '',
899
+ agent: i._agent || '', failReason: i._failReason || '',
899
900
  })),
900
901
  };
901
902
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.661",
3
+ "version": "0.1.663",
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"