/** * Tool output size limits matching Claude Code patterns. */ /** System-wide default max result size in characters. */ export declare const DEFAULT_MAX_RESULT_SIZE_CHARS = 50000; /** Per-command cap for bash tool output before persistence. */ export declare const BASH_MAX_OUTPUT_CHARS = 30000; /** Per-command cap for skill bash substitution (inline/block). */ export declare const SKILL_BASH_MAX_OUTPUT_CHARS = 30000; /** Preview size in characters when output is persisted to disk. */ export declare const PREVIEW_SIZE_BYTES = 2048;