Bundled OpenAI Docs skill has stale GPT-5.6 Luna and Pro mode facts
Open 💬 0 comments Opened Jul 22, 2026 by alexph-dev
Codex rust-v0.145.0 bundles three defects in the OpenAI Docs skill:
codex-rs/skills/src/assets/samples/openai-docs/references/upgrading-to-gpt-5p6-sol.mdsays GPT-5.6 Luna has a 400K context window and omits Luna from the >272K long-context surcharge. The current model page says 1,050,000 context, 922,000 max input, and the same >272K pricing rule: https://developers.openai.com/api/docs/models/gpt-5.6-luna- The same guide says Pro efforts begin at
medium. Current migration guidance saysreasoning.modeandreasoning.effortare independent; GPT-5.6 supportsnone,low,medium,high,xhigh, andmax, withmediumonly the omitted default: https://developers.openai.com/api/docs/guides/latest-model#update-api-and-model-parameters codex-rs/skills/src/assets/samples/openai-docs/scripts/resolve-latest-model-infousesset -ubut expands$HOMEunconditionally. WithHOMEandNODEunset and nonodeonPATH, it exits withHOME: unbound variablebefore trying valid/opt/homebrew/bin/node,/usr/local/bin/node, or/usr/bin/nodefallbacks. A direct reproduction is:env -u HOME -u NODE PATH=/usr/bin:/bin sh resolve-latest-model-info --source references/latest-model.mdon a machine with/opt/homebrew/bin/node.
These claims and the wrapper matter because they are the fallback when live docs retrieval or the normal Node path is unavailable. Please update the repeated Luna context/pricing references, remove the Pro-mode minimum-effort restriction, and guard the home-relative runtime candidates.
Observed in stable rust-v0.145.0; the same source is present on main.