/** * cv job-agent — A conversational AI agent for job hunting. * * Uses the CareerVivid resume + Gemini to autonomously search for jobs, * score them, save matches to the Kanban tracker, and update statuses * through natural language conversation. * * Usage: * cv job-agent Start in conversational mode * cv job-agent --role "SWE" Pre-seed a search role * cv job-agent --pro Use gemini-3.1-pro for deeper reasoning */ import { Command } from "commander"; export declare const JOB_AGENT_SYSTEM_PROMPT: string; export declare function registerJobAgentCommand(program: Command): void; //# sourceMappingURL=jobAgent.d.ts.map