/** * Centralized Runtime Defaults * * All runtime-related constants that were previously scattered across modules. * Centralizing these makes it easier to tune behavior and understand limits. */ /** Milliseconds per second */ export declare const MS_PER_SECOND = 1000; /** Seconds per minute */ export declare const SECONDS_PER_MINUTE = 60; /** Minutes per hour */ export declare const MINUTES_PER_HOUR = 60; /** Hours per day */ export declare const HOURS_PER_DAY = 24; /** Days per week */ export declare const DAYS_PER_WEEK = 7; /** One minute in milliseconds */ export declare const ONE_MINUTE_MS: number; /** One hour in milliseconds */ export declare const ONE_HOUR_MS: number; /** One day in milliseconds */ export declare const ONE_DAY_MS: number; /** One week in milliseconds */ export declare const ONE_WEEK_MS: number; /** * Trajectory gate block retry settings * Used when trajectory recording fails and needs to retry */ export declare const TRAJECTORY_GATE_BLOCK_RETRY_DELAY_MS = 250; export declare const TRAJECTORY_GATE_BLOCK_MAX_RETRIES = 3; export declare const THINKING_CHECKPOINT_WINDOW_MS: number; export declare const THINKING_CHECKPOINT_DEFAULT_HIGH_RISK_TOOLS: readonly ['run_shell_command', 'delete_file', 'move_file']; /** Large change threshold for GFI gate adjustments */ export declare const GFI_LARGE_CHANGE_LINES = 50; /** Agent spawn GFI threshold (critically high = no spawn) */ export declare const AGENT_SPAWN_GFI_THRESHOLD = 90; export declare const SESSION_TOKEN_WARNING_THRESHOLD = 8000; export declare const SESSION_MAX_IDLE_MS: number; export declare const EVENT_LOG_BUFFER_SIZE = 20; export declare const EVENT_LOG_FLUSH_INTERVAL_MS: number; /** Default busy timeout for SQLite operations (5 seconds) */ export declare const DEFAULT_BUSY_TIMEOUT_MS: number; /** Max string length for trajectory/event logs */ export declare const MAX_STRING_LENGTH = 1000; /** Default max file size (10MB) */ export declare const MAX_FILE_SIZE_BYTES: number; /** Two hours in milliseconds */ export declare const TWO_HOURS_MS: number;