Prepare for alternative Codex harness certification

This commit is contained in:
Mario Zechner 2026-01-10 13:22:10 +01:00
parent 11dd2f476b
commit 6dcb64565a
11 changed files with 337 additions and 375 deletions

View file

@ -2,6 +2,10 @@
## [Unreleased]
### Changed
- OpenAI Codex: updated to use bundled system prompt from upstream
## [0.42.2] - 2026-01-10
### Added

View file

@ -26,7 +26,7 @@ async function buildCodexInjectionInfo(tools?: AgentTool[]): Promise<CodexInject
// Try to get cached instructions for default model family
let instructions: string | null = null;
try {
instructions = await getCodexInstructions("gpt-5.1-codex");
instructions = getCodexInstructions();
} catch {
// Cache miss - that's fine
}