agent-afk 5.94.0 → 5.95.1

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.
@@ -0,0 +1,2 @@
1
+ import { Command } from 'commander';
2
+ export declare function registerCardsSubcommand(improve: Command): void;
@@ -0,0 +1,5 @@
1
+ import { Command } from 'commander';
2
+ import type { EvalCase } from '../../../improve/schemas.js';
3
+ export declare function findEvalCaseForEvidenceRow(existing: readonly EvalCase[], evidenceRowIndex: number): EvalCase | undefined;
4
+ export declare function registerEvalGenSubcommand(improve: Command): void;
5
+ export declare function registerEvalCasesSubcommand(improve: Command): void;
@@ -0,0 +1,4 @@
1
+ import { Command } from 'commander';
2
+ import type { EvalRun } from '../../../improve/schemas.js';
3
+ export declare function registerEvalRunSubcommand(improve: Command): void;
4
+ export declare function applyEvalRunExit(status: EvalRun['status']): void;
@@ -0,0 +1,4 @@
1
+ import { Command } from 'commander';
2
+ export { VALID_PATTERNS } from './shared.js';
3
+ export { applyEvalRunExit } from './eval-run.js';
4
+ export declare function registerImproveCommand(program: Command): void;
@@ -0,0 +1,3 @@
1
+ import { Command } from 'commander';
2
+ export declare function registerProposeSubcommand(improve: Command): void;
3
+ export declare function registerProposalsSubcommand(improve: Command): void;
@@ -0,0 +1,2 @@
1
+ import { Command } from 'commander';
2
+ export declare function registerScanSubcommand(improve: Command): void;
@@ -0,0 +1,2 @@
1
+ import type { FailurePattern } from '../../../improve/schemas.js';
2
+ export declare const VALID_PATTERNS: readonly FailurePattern[];
@@ -0,0 +1,4 @@
1
+ export declare const DEFAULT_TEXT_MEASURE = 100;
2
+ export declare const MIN_TEXT_MEASURE = 20;
3
+ export declare function resolveTextMeasure(): number | null;
4
+ export declare function capToMeasure(width: number): number;