/** * codeprism push — uploads a local codeprism.db to a hosted engine. * * After running `codeprism index` locally (which uses your own LLM key * to generate rich AI cards), use this command to sync the results to * your team's hosted codeprism engine. * * Usage: * codeprism push \ * --engine-url https://yourteam.codeprism.dev \ * --api-key sk_xxxxxxxxxxxx * * Options: * --engine-url Engine base URL (or set CODEPRISM_ENGINE_URL env var) * --api-key Team API key (or set CODEPRISM_API_KEY env var) * --db Path to local codeprism.db (auto-detected if not set) * --delete Delete the local DB after a successful push */ export interface PushOptions { engineUrl: string; apiKey: string; db?: string; delete?: boolean; } export declare function runPush(opts: PushOptions): Promise; //# sourceMappingURL=push.d.ts.map