/** * codeprism import-transcripts — discovers and processes AI conversation transcripts. * * Auto-discovers Cursor transcripts at ~/.cursor/projects/*\/agent-transcripts/*.jsonl * and Claude Code transcripts at ~/.claude/projects/**\/*.jsonl. * * For each transcript: * 1. Hash-dedup (skip if already imported) * 2. Parse + anonymize * 3. Gate check (does it contain explicit corrections / knowledge?) * 4. Extract insights (with evidence_quote validation) * 5. Semantic dedup (corroboration vs new card) * 6. Code-first verification (auto-promote, human gate, or aspirational) * 7. PR linking (file-overlap matching for trust boost) * 8. Write to DB (extracted_insights + cards) */ export interface ImportOptions { dryRun?: boolean; force?: boolean; } export declare function importTranscripts(opts?: ImportOptions): Promise; //# sourceMappingURL=import-transcripts.d.ts.map