| 3 | import { join } from "path"; |
| 4 | |
| 5 | interface ToolCall { |
| 6 | tool: string; |
| 7 | callID: string; |
| 8 | sessionID: string; |
| 9 | status: string; |
| 10 | input?: Record<string, unknown>; |
| 11 | output?: string; |
| 12 | startTime: number; |
| 13 | } |
| 14 | |
| 15 | // DEBUG: Safe deep-inspect that handles circular refs + truncates big strings |
| 16 | function inspect(value: unknown, maxStringLen = 500, maxDepth = 6): string { |
nothing calls this directly
no outgoing calls
no test coverage detected