(value: unknown)
| 47 | type ToolCallResult = Awaited<ReturnType<Client["callTool"]>>; |
| 48 | |
| 49 | const isRecord = (value: unknown): value is Record<string, unknown> => |
| 50 | typeof value === "object" && value !== null && !Array.isArray(value); |
| 51 | |
| 52 | const makeScopeId = (cwd: string): string => { |
| 53 | const folder = basename(cwd) || cwd; |
no outgoing calls
no test coverage detected