@yemi33/minions 0.1.594 → 0.1.595

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.594 (2026-04-08)
3
+ ## 0.1.595 (2026-04-08)
4
4
 
5
5
  ### Features
6
6
  - show worktree count and engine quick stats on engine page
7
7
 
8
8
  ### Fixes
9
+ - bump fix task max-turns from 50 to 75
9
10
  - Pipeline UI show monitored resources in pipeline card (closes #523) (#542)
10
11
  - move 'When to Stop' after Build/Test in implement playbook
11
12
  - per-type maxTurns bypassed when config has default maxTurns=100
package/engine.js CHANGED
@@ -151,7 +151,7 @@ const _MAX_TURNS_BY_TYPE = {
151
151
  [WORK_TYPE.EXPLORE]: 30, [WORK_TYPE.ASK]: 20, [WORK_TYPE.REVIEW]: 30,
152
152
  [WORK_TYPE.DECOMPOSE]: 15, [WORK_TYPE.PLAN]: 30, [WORK_TYPE.PLAN_TO_PRD]: 20,
153
153
  [WORK_TYPE.MEETING]: 30,
154
- [WORK_TYPE.IMPLEMENT]: 75, [WORK_TYPE.IMPLEMENT_LARGE]: 75, [WORK_TYPE.FIX]: 50,
154
+ [WORK_TYPE.IMPLEMENT]: 75, [WORK_TYPE.IMPLEMENT_LARGE]: 75, [WORK_TYPE.FIX]: 75,
155
155
  [WORK_TYPE.TEST]: 50, [WORK_TYPE.VERIFY]: 100, [WORK_TYPE.DOCS]: 30,
156
156
  };
157
157
  function _maxTurnsForType(type, engineConfig) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yemi33/minions",
3
- "version": "0.1.594",
3
+ "version": "0.1.595",
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"