(text: string, payload: Record<string, unknown>)
| 60 | // ── Helpers ─────────────────────────────────────────────────────────────── |
| 61 | |
| 62 | function toolSuccess(text: string, payload: Record<string, unknown>) { |
| 63 | return { |
| 64 | content: [{ type: "text" as const, text }], |
| 65 | structuredContent: payload, |
| 66 | }; |
| 67 | } |
| 68 | |
| 69 | function toolFailure(message: string) { |
| 70 | return { |
no outgoing calls
no test coverage detected
searching dependent graphs…