(value: unknown)
| 60 | type ToolCallResult = Awaited<ReturnType<Client["callTool"]>>; |
| 61 | |
| 62 | const isRecord = (value: unknown): value is Record<string, unknown> => |
| 63 | typeof value === "object" && value !== null && !Array.isArray(value); |
| 64 | |
| 65 | const makeScopeId = (cwd: string): string => { |
| 66 | const folder = basename(cwd) || cwd; |
no outgoing calls
no test coverage detected