()
| 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. |
| 40 | const loadCodeGraph = (): typeof import('../index').default => |
| 41 | (require('../index') as typeof import('../index')).default; |
| 42 | const loadToolHandler = (): typeof import('./tools').ToolHandler => |
| 43 | (require('./tools') as typeof import('./tools')).ToolHandler; |
| 44 |