@yemi33/minions 0.1.509 → 0.1.511

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,11 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.509 (2026-04-07)
3
+ ## 0.1.511 (2026-04-07)
4
4
 
5
5
  ### Features
6
6
  - abort and retrigger buttons for active pipeline runs
7
7
 
8
8
  ### Fixes
9
+ - decomposed badge uses static style (no pulse animation)
10
+ - PRD regeneration uses unique filename instead of reusing old name
9
11
  - PRD filenames are unique — engine generates collision-free name
10
12
  - PRD view shows all projects, not just the first one
11
13
  - bug report shows feedback inside modal, not hidden toast
@@ -30,7 +30,7 @@ function wiRetryBtn(item) {
30
30
 
31
31
  function wiRow(item) {
32
32
  const statusBadge = (s) => {
33
- const cls = s === 'failed' ? 'rejected' : s === 'needs-human-review' ? 'needs-review' : s === 'dispatched' ? 'building' : s === 'pending' || s === 'queued' ? 'active' : s === 'done' ? 'approved' : s === 'decomposed' ? 'building' : 'draft';
33
+ const cls = s === 'failed' ? 'rejected' : s === 'needs-human-review' ? 'needs-review' : s === 'dispatched' ? 'building' : s === 'pending' || s === 'queued' ? 'active' : s === 'done' ? 'approved' : s === 'decomposed' ? 'approved' : 'draft';
34
34
  return '<span class="pr-badge ' + cls + '">' + escHtml(s) + '</span>';
35
35
  };
36
36
  const typeBadge = (t) => '<span class="dispatch-type ' + (t || 'implement') + '">' + escHtml(t || 'implement') + '</span>';
package/engine.js CHANGED
@@ -1097,13 +1097,12 @@ function materializePlansAsWorkItems(config) {
1097
1097
  title: `Regenerate PRD from revised plan: ${plan.source_plan}`,
1098
1098
  type: 'plan-to-prd',
1099
1099
  priority: 'high',
1100
- description: `Plan file: plans/${plan.source_plan}\nTarget PRD filename: ${file}\nSource plan was revised while PRD was awaiting approval — regenerating.${completedContext}`,
1100
+ description: `Plan file: plans/${plan.source_plan}\nSource plan was revised while PRD was awaiting approval — regenerating.${completedContext}`,
1101
1101
  status: 'pending',
1102
1102
  created: ts(),
1103
1103
  createdBy: 'engine:plan-revision',
1104
1104
  project: targetProject.name,
1105
1105
  planFile: plan.source_plan,
1106
- _targetPrdFile: file,
1107
1106
  });
1108
1107
  safeWrite(centralWiPath, centralItems);
1109
1108
  log('info', `Queued plan-to-prd regeneration for revised plan ${plan.source_plan} (${completedItems.length} completed items to carry over)`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.509",
3
+ "version": "0.1.511",
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"