/** * graded-session.ts * * Module-level flag tracking whether the current Pi session is in graded mode. * Set to true by attempt-capture after dispatching an /attempt injection; * read by integrity-guard's before_agent_start hook to reinforce evaluation * constraints on every subsequent agent turn. * * Pi is single-process per session, so module-level state has session granularity * and resets automatically when Pi restarts. */ export declare const JAILBREAK_ESCALATION_THRESHOLD = 3; export declare function setGradedMode(active: boolean): void; export declare function isGradedModeActive(): boolean; export declare function resetGradedMode(): void; export declare function incrementJailbreakCount(): number; export declare function getJailbreakCount(): number; //# sourceMappingURL=graded-session.d.ts.map