/** * RunTestsToolsNudge — mid-run reminder when the user explicitly asked to run * tests / the suite, but no verification tools have run yet. * * Unlike VerifyNudge (edit-pressure after surgical patches), this fires even * with zero edits when the user asked for tests. Soft: max 1 fire. * Pairs with evaluateInventedVerificationCompletionGate. */ export declare const RUN_TESTS_TOOLS_NUDGE_MAX_ATTEMPTS = 1; export interface RunTestsToolsNudgeRequest { userText: string; toolCallsByName: Record; messages?: Array<{ role?: string; content?: unknown; }>; totalToolCalls: number; attempts: number; } export type RunTestsToolsNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluateRunTestsToolsNudge(request: RunTestsToolsNudgeRequest): RunTestsToolsNudgeResult; //# sourceMappingURL=run-tests-tools-nudge.d.ts.map