Files
openclaw/extensions/codex/src/app-server/version.ts
2026-06-10 14:14:53 +09:00

13 lines
707 B
TypeScript

/**
* Version and package pins for the managed Codex app-server runtime.
*/
/** Minimum Codex app-server version supported by the OpenClaw Codex bridge. */
export const MIN_CODEX_APP_SERVER_VERSION = "0.125.0";
/** Minimum Codex app-server version that supports sandbox exec-server environments. */
export const MIN_CODEX_SANDBOX_EXEC_SERVER_APP_SERVER_VERSION = "0.132.0";
/** npm package name for the managed Codex app-server binary. */
export const MANAGED_CODEX_APP_SERVER_PACKAGE = "@openai/codex";
// Keep this in sync with the Codex CLI live-test package pin.
/** Managed Codex app-server package version installed by OpenClaw. */
export const MANAGED_CODEX_APP_SERVER_PACKAGE_VERSION = "0.139.0";