(stderr)
| 52 | const EXTERNAL_AGENT_IMPORT_TIMEOUT_MS = 2 * 60 * 1000; |
| 53 | |
| 54 | function cleanCodexStderr(stderr) { |
| 55 | return stderr |
| 56 | .split(/\r?\n/) |
| 57 | .map((line) => line.trimEnd()) |
| 58 | .filter((line) => line && !line.startsWith("WARNING: proceeding, even though we could not update PATH:")) |
| 59 | .join("\n"); |
| 60 | } |
| 61 | |
| 62 | /** @returns {ThreadStartParams} */ |
| 63 | function buildThreadParams(cwd, options = {}) { |
no outgoing calls
no test coverage detected