| 14 | // ── Engine registry ──────────────────────────────────────────────────── |
| 15 | |
| 16 | export interface EngineConfig { |
| 17 | bin: string; |
| 18 | args: (prompt: string, engine?: Pick<ResolvedEngine, 'model' | 'effort'>) => string[]; |
| 19 | } |
| 20 | |
| 21 | const KNOWN_ENGINES: Record<string, EngineConfig> = { |
| 22 | claude: { |
nothing calls this directly
no outgoing calls
no test coverage detected