@yemi33/minions 0.1.742 → 0.1.743

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,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.742 (2026-04-09)
3
+ ## 0.1.743 (2026-04-09)
4
4
 
5
5
  ### Features
6
6
  - add prNumber field to pull-requests.json records (#711)
7
7
 
8
8
  ### Fixes
9
+ - link plan files as artifacts on plan/plan-to-prd work items
9
10
  - escalate failed plan items instead of blocking indefinitely (closes #722) (#733)
10
11
  - handle NUL pseudo-file in Windows worktree cleanup (#731)
11
12
 
package/engine/queries.js CHANGED
@@ -754,6 +754,8 @@ function getWorkItems(config) {
754
754
  }
755
755
  if (item.branch || item.featureBranch) arts.branch = item.branch || item.featureBranch;
756
756
  if (item.sourcePlan) arts.sourcePlan = item.sourcePlan;
757
+ if (item._planFileName) arts.plan = item._planFileName;
758
+ else if (item.planFile) arts.plan = item.planFile;
757
759
  if (item._pr) arts.pr = item._pr;
758
760
  if (Object.keys(arts).length > 0) item._artifacts = arts;
759
761
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.742",
3
+ "version": "0.1.743",
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"