MCPcopy Index your code
hub / github.com/openai/codex-plugin-cc / cleanCodexStderr

Function cleanCodexStderr

plugins/codex/scripts/lib/codex.mjs:54–60  ·  view source on GitHub ↗
(stderr)

Source from the content-addressed store, hash-verified

52const EXTERNAL_AGENT_IMPORT_TIMEOUT_MS = 2 * 60 * 1000;
53
54function 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} */
63function buildThreadParams(cwd, options = {}) {

Callers 3

runAppServerReviewFunction · 0.85
runAppServerTurnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected