agent-afk 5.85.2 → 5.85.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.
@@ -3,3 +3,4 @@ export declare const DEFAULT_MAX_TOOL_USE_ITERATIONS = 0;
3
3
  export declare const WIND_DOWN_NOTE: string;
4
4
  export declare function resolveMaxToolIterations(configured: number | undefined): number;
5
5
  export declare function shouldWindDown(completedRounds: number, maxIterations: number): boolean;
6
+ export declare function formatRoundLabel(round: number, maxIterations: number): string;
@@ -1,2 +1,4 @@
1
1
  import { Command } from 'commander';
2
+ import type { FailurePattern } from '../../improve/schemas.js';
3
+ export declare const VALID_PATTERNS: readonly FailurePattern[];
2
4
  export declare function registerImproveCommand(program: Command): void;