(argv: string[])
| 12 | import { log, selectMany, selectOne } from "./prompts"; |
| 13 | |
| 14 | function parseHarnessFlag(argv: string[]): HarnessKind | null { |
| 15 | const idx = argv.indexOf("--harness"); |
| 16 | if (idx === -1 || idx === argv.length - 1) return null; |
| 17 | const value = argv[idx + 1]; |
| 18 | if (value === "opencode" || value === "pi") return value; |
| 19 | return null; |
| 20 | } |
| 21 | |
| 22 | export interface ResolveOptions { |
| 23 | /** Allow the user to select multiple harnesses at once. Setup defaults to single. */ |
no outgoing calls
no test coverage detected