/** * CareerVivid Agent Instructions * ================================ * SINGLE SOURCE OF TRUTH for all agent system prompts. * * Update a section here once and every agent mode picks it up automatically: * cv agent → coding mode (CODING_AGENT_SYSTEM_PROMPT + BASE_IDENTITY) * cv agent --resume → BASE_IDENTITY + RESUME_SECTION * cv agent --jobs → JOBS_SYSTEM_PROMPT + JOBS_TOOLS_SECTION + BROWSER_SECTION * * DO NOT scatter instructions across QueryEngine.ts, engineResolver.ts, or anywhere else. */ /** @deprecated Keep for any external callers that import baseIdentity directly. */ export declare const baseIdentity: string; export declare const RESUME_SECTION: string; export declare const CODING_SECTION: string; export declare const BROWSER_CODING_SECTION: string; export declare const JOBS_TOOLS_SECTION: string; export declare const JOBS_HARNESS: string; export declare const GREETING_PROTOCOL: string; /** * Returns the assembled system prompt for a given agent mode. * Injects the user's past session memory (from ~/.careervivid/memory.md) when available. * This is the ONLY function that engineResolver.ts should call. */ export declare function buildSystemPrompt(options: { jobs?: boolean; resume?: boolean; coding?: boolean; }): string; //# sourceMappingURL=instructions.d.ts.map