/** * AgentGuard(TM) Spend: Advisor system prompt. * * AgentGuard Advisor runs locally in the customer terminal. It may call the * customer's chosen OpenAI-compatible provider, but it never calls AgentGuard * infrastructure for prompts, completions, provider keys, signing keys, or * policy details. * * Patent notice: Protected by U.S. patent-pending technology * (App. Nos. 63/983,615; 63/983,621; 63/983,843; 63/984,626; * 64/071,781; 64/071,789). */ export interface AdvisorPromptSection { id: string; title: string; content: string; } export declare const ADVISOR_SYSTEM_PROMPT_SECTIONS: AdvisorPromptSection[]; export declare const ADVISOR_SYSTEM_PROMPT: string; //# sourceMappingURL=system-prompt.d.ts.map