/** * OMX Trace MCP Server * Provides trace timeline and summary tools for debugging agent flows. * Reads .omk/logs/ turn JSONL files produced by the notify hook. */ interface TraceEntry { timestamp: string; type: string; thread_id?: string; turn_id?: string; input_preview?: string; output_preview?: string; } export declare function readLogFiles(logsDir: string, last?: number): Promise; interface LogSummary { totalTurns: number; turnsByType: Record; firstTimestamp: string | null; lastTimestamp: string | null; } export declare function summarizeLogFiles(logsDir: string): Promise; interface ModeEvent { timestamp: string; event: string; mode: string; details?: Record; } export declare function readModeEvents(workingDirectory: string): Promise; export {}; //# sourceMappingURL=trace-server.d.ts.map