@yemi33/minions 0.1.724 → 0.1.725

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.725 (2026-04-09)
4
+
5
+ ### Fixes
6
+ - PRD item descriptions truncated to 200 chars in plan viewer (#705)
7
+
3
8
  ## 0.1.724 (2026-04-09)
4
9
 
5
10
  ### Features
package/engine/queries.js CHANGED
@@ -976,7 +976,7 @@ function getPrdInfo(config) {
976
976
  items: items.map(i => ({
977
977
  id: i.id, name: i.name || i.title, priority: i.priority,
978
978
  complexity: i.estimated_complexity || i.size, status: i.status || 'missing',
979
- description: (i.description || '').slice(0, 200), projects: i.projects || [],
979
+ description: i.description || '', projects: i.projects || [],
980
980
  prs: prdToPr[i.id] || [], depends_on: i.depends_on || [],
981
981
  project: i.project || '', source: i._source || '', planSummary: i._planSummary || '', planProject: i._planProject || '', planStatus: i._planStatus || 'active', _archived: i._archived || false, sourcePlan: i._sourcePlan || '',
982
982
  planStale: i._planStale || false, lastSyncedFromPlan: i._lastSyncedFromPlan || null, prdUpdatedAt: i._prdUpdatedAt || null, prdCompletedAt: i._prdCompletedAt || '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.724",
3
+ "version": "0.1.725",
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"