| 29 | } |
| 30 | |
| 31 | interface CallMessage { |
| 32 | type: 'call'; |
| 33 | id: number; |
| 34 | toolName: string; |
| 35 | args: Record<string, unknown>; |
| 36 | } |
| 37 | |
| 38 | // Mirror the engine's lazy-require of the heavy CodeGraph + tools chain. This |
| 39 | // module is only ever loaded as a Worker, so the require runs once on spawn. |
nothing calls this directly
no outgoing calls
no test coverage detected