(env: NodeJS.ProcessEnv = process.env)
| 18 | const windowsMetaCharacterPattern = /([()\][%!^"`<>&|;, *?])/g; |
| 19 | |
| 20 | export function codexProcessCommand(env: NodeJS.ProcessEnv = process.env): string { |
| 21 | return env.CODEX_BIN?.trim() || "codex"; |
| 22 | } |
| 23 | |
| 24 | export function codexSpawnInvocation( |
| 25 | args: readonly string[], |
no outgoing calls
no test coverage detected