/** * cv jobs apply — ATS Application Harness * * A self-expanding harness that routes job applications to the best engine: * * KNOWN ATS (Ashby, Greenhouse, Lever, etc.) * → TypeScript adapter (fast, no LLM, fills standard fields) * → Fail/incomplete → Python browser-use sidecar (full AI agent) * * UNKNOWN ATS (first time seeing this platform) * → AI generates a new TypeScript adapter, saves to ~/.careervivid/adapters/ * → Also syncs to Firebase Storage (cross-device memory space) * → Fail → Python browser-use sidecar (universal fallback) * * Model selection inherited from cv job-agent --model * Browser stays open for manual review → user submits manually. */ import { Command } from "commander"; export declare function registerApplyCommand(program: Command): void; //# sourceMappingURL=apply.d.ts.map