@yemi33/minions 0.1.1014 → 0.1.1016

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,14 @@
1
1
  # Changelog
2
2
 
3
- ## 0.1.1014 (2026-04-16)
3
+ ## 0.1.1016 (2026-04-16)
4
+
5
+ ### Features
6
+ - route implement items to dedicated implement playbook (#1115)
7
+
8
+ ## 0.1.1015 (2026-04-16)
4
9
 
5
10
  ### Fixes
11
+ - revert to PR merge now that stale status check is removed
6
12
  - guard live review check against undefined vote/state values (#1132)
7
13
 
8
14
  ### Other
@@ -567,6 +567,10 @@ function selectPlaybook(workType, item) {
567
567
  if (item?.branchStrategy === 'shared-branch' && (workType === WORK_TYPE.IMPLEMENT || workType === WORK_TYPE.IMPLEMENT_LARGE)) {
568
568
  return 'implement-shared';
569
569
  }
570
+ // implement:large uses the same playbook as implement (no separate playbook file)
571
+ if (workType === WORK_TYPE.IMPLEMENT || workType === WORK_TYPE.IMPLEMENT_LARGE) {
572
+ return 'implement';
573
+ }
570
574
  if (workType === WORK_TYPE.REVIEW && !item?._pr && !item?.pr_id) {
571
575
  return 'work-item';
572
576
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.1014",
3
+ "version": "0.1.1016",
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"