/** * save_transcript Tool * * Save full session transcript to Supabase storage for training data, * post-mortems, and pattern mining. * * */ import type { Project, PerformanceData } from "../types/index.js"; export interface SaveTranscriptParams { session_id: string; transcript: string; format?: "json" | "markdown"; project?: Project; } export interface SaveTranscriptResult { success: boolean; transcript_path?: string; size_bytes?: number; size_kb?: number; estimated_tokens?: number; error?: string; patch_warning?: string; performance: PerformanceData; } /** * Execute save_transcript tool */ export declare function saveTranscript(params: SaveTranscriptParams): Promise; //# sourceMappingURL=save-transcript.d.ts.map