/** Default timeout for sandbox command execution */ export declare const SANDBOX_DEFAULT_TIMEOUT_MS = 30000; /** Default memory limit per sandbox */ export declare const SANDBOX_DEFAULT_MEMORY_LIMIT_MB = 512; /** Default max processes per sandbox */ export declare const SANDBOX_DEFAULT_MAX_PROCESSES = 32; /** Max stdout/stderr output size before truncation */ export declare const SANDBOX_MAX_OUTPUT_BYTES: number; /** Temp directory prefix for sandbox roots */ export declare const SANDBOX_TEMP_DIR_PREFIX = "namzu-sbx-"; /** Grace period before SIGKILL after SIGTERM */ export declare const SANDBOX_KILL_GRACE_MS = 3000; /** * Base environment keys that are safe to pass into local sandboxes. * Windows adds its non-secret core process fragment at the spawn boundary; * everything else ambient is stripped on every platform. */ export declare const SANDBOX_SAFE_ENV_KEYS: Set; /** Default container path for the user-visible outputs (RW) bind. */ export declare const SANDBOX_DEFAULT_OUTPUTS_PATH = "/mnt/user-data/outputs"; /** Default container path for user-uploaded files (RO). */ export declare const SANDBOX_DEFAULT_UPLOADS_PATH = "/mnt/user-data/uploads"; /** * Default container path for the agent's working/scratch space (RW). * Sibling mount to {@link SANDBOX_DEFAULT_OUTPUTS_PATH} — anything * written here is invisible to the output collector by design: an * agent needs somewhere to think out loud that is not the deliverable. */ export declare const SANDBOX_DEFAULT_SCRATCH_PATH = "/mnt/user-data/scratch"; /** Default container path for cached tool fetches (RO). */ export declare const SANDBOX_DEFAULT_TOOL_RESULTS_PATH = "/mnt/user-data/tool_results"; /** Default container path for prior-conversation transcripts (RO). */ export declare const SANDBOX_DEFAULT_TRANSCRIPTS_PATH = "/mnt/transcripts"; /** * Default parent path under which each skill bundle binds. * Per-skill default is `${SANDBOX_DEFAULT_SKILLS_PARENT}/`. */ export declare const SANDBOX_DEFAULT_SKILLS_PARENT = "/mnt/skills"; //# sourceMappingURL=index.d.ts.map