(kind: Extract<RuntimeKind, 'cli' | 'mcp'>)
| 8 | import { getVersion } from './version' |
| 9 | |
| 10 | export function createCliRuntimeIdentity(kind: Extract<RuntimeKind, 'cli' | 'mcp'>): RuntimeIdentity { |
| 11 | return { version: getVersion(), kind } |
| 12 | } |
| 13 | |
| 14 | export function assertCliDataDirCompatible( |
| 15 | pathProvider: PathProvider, |
nothing calls this directly
no test coverage detected