@yemi33/minions 0.1.1572 → 0.1.1573

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.1573 (2026-04-27)
4
+
5
+ ### Fixes
6
+ - default existing_prd_json to empty so plan-to-prd dispatch doesn't warn
7
+
3
8
  ## 0.1.1572 (2026-04-27)
4
9
 
5
10
  ### Fixes
package/engine.js CHANGED
@@ -2982,6 +2982,11 @@ function discoverCentralWorkItems(config) {
2982
2982
  vars.plan_summary = (item.title || item.planFile).substring(0, 80);
2983
2983
  vars.plan_file = item.planFile || '';
2984
2984
  vars.project_name_lower = (firstProject?.name || 'project').toLowerCase();
2985
+ // Default empty string so the {{existing_prd_json}} token always resolves —
2986
+ // playbook treats empty as "no existing PRD, fresh run". Without this default
2987
+ // the renderPlaybook pass logs an "unresolved template variables" warning
2988
+ // every time a fresh plan-to-prd dispatches.
2989
+ vars.existing_prd_json = '';
2985
2990
  // Check if a PRD already exists for this plan — reuse its filename to avoid duplicates (#884)
2986
2991
  let prdFilename = null;
2987
2992
  const prdFiles = safeReadDir(PRD_DIR).filter(f => f.endsWith('.json'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1572",
3
+ "version": "0.1.1573",
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"