/** * PublishDeployToolsNudge — mid-run reminder when the user asked to publish * a package or deploy to production, but no matching publish/deploy exec ran. * * Soft: max 1 fire. Pairs with evaluateInventedPublishDeployCompletionGate. */ export declare const PUBLISH_DEPLOY_TOOLS_NUDGE_MAX_ATTEMPTS = 1; export interface PublishDeployToolsNudgeRequest { userText: string; toolCallsByName: Record; messages?: Array<{ role?: string; content?: unknown; }>; totalToolCalls: number; attempts: number; } export type PublishDeployToolsNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluatePublishDeployToolsNudge(request: PublishDeployToolsNudgeRequest): PublishDeployToolsNudgeResult; //# sourceMappingURL=publish-deploy-tools-nudge.d.ts.map