@yemi33/minions 0.1.662 → 0.1.664

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,10 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.662 (2026-04-09)
3
+ ## 0.1.664 (2026-04-09)
4
4
 
5
5
  ### Fixes
6
+ - PRD list/graph toggle uses rerenderPrdFromCache instead of refresh
7
+ - include agent and failReason in PRD progress items mapping
6
8
  - skip unused config read in fast poll, fix timer cleanup variable name
7
9
  - retry button broken for project-level work items, add _source field
8
10
  - use PowerShell instead of wmic for process kill on Windows 11
@@ -422,8 +422,8 @@ function renderPrdProgress(prog) {
422
422
  const renderViewToggle = () => {
423
423
  const isGraph = window._prdViewMode === 'graph';
424
424
  return '<div style="display:flex;gap:4px;margin-bottom:8px;padding:0 8px">' +
425
- '<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'graph\';refresh()">Graph</button>' +
426
- '<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (!isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'list\';refresh()">List</button>' +
425
+ '<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'graph\';rerenderPrdFromCache()">Graph</button>' +
426
+ '<button class="pr-pager-btn" style="font-size:9px;padding:2px 8px;' + (!isGraph ? 'background:var(--blue);color:#fff;border-color:var(--blue)' : '') + '" onclick="window._prdViewMode=\'list\';rerenderPrdFromCache()">List</button>' +
427
427
  '</div>';
428
428
  };
429
429
 
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.662",
3
+ "version": "0.1.664",
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"