(args: any)
| 315 | } |
| 316 | |
| 317 | async function toolRefresh(args: any): Promise<string> { |
| 318 | cachedResult = null; |
| 319 | cachedRoot = null; |
| 320 | const result = await getScanResult(args.directory); |
| 321 | return `Refreshed. ${result.routes.length} routes, ${result.schemas.length} models, ${result.graph.edges.length} import links, ${result.config.envVars.length} env vars.`; |
| 322 | } |
| 323 | |
| 324 | async function toolGetWikiIndex(args: any): Promise<string> { |
| 325 | const result = await getScanResult(args.directory); |
nothing calls this directly
no test coverage detected