@getpipher/armory-fleet 0.9.3 → 0.9.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpipher/armory-fleet",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "private": false,
5
5
  "description": "The armory suite's subagent orchestrator for the pi coding agent — a cross-harness, superpowers-native fleet where every agent is armory-native from birth.",
6
6
  "license": "MIT",
@@ -1,5 +1,8 @@
1
1
  // src/engine/turn-budget.ts
2
- export const DEFAULT_MAX_TURNS = 20;
2
+ /** Default per-run turn budget. Effectively uncapped for normal work — a very complex
3
+ * multi-file task rarely exceeds ~100 turns; 1000 bounds runaway loops while never clipping
4
+ * legit work. Callers may pass a tighter `maxTurns` (e.g. 5) for trivial lookups. (v0.9.4: was 20.) */
5
+ export const DEFAULT_MAX_TURNS = 1000;
3
6
 
4
7
  export interface TurnBudget {
5
8
  /** Returns true when the just-consumed turn meets/exceeds the cap. */