123 wires and counting

$ follow OpenAI

Keep up with OpenAI in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-05-30
stories 80

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

CODEX OVERHAULS GOAL STEERING AND MODEL TOOL SELECTION

By RepoJournal · Filed · About OpenAI · Composed from the cited sources · methodology

Goal steering now routes through the same injection path as runtime steering, while models gain explicit tool-mode control independent of legacy feature flags.

The core steering infrastructure shifted overnight with a unified injection approach that treats active-turn goal steering as a first-class runtime operation [1]. This lands on top of recent work moving goal steering onto source-labeled context fragments, meaning your model's steering directives now follow the same queuing rules as everything else flowing through the session. Separately, models can now declare their code-execution behavior through catalog metadata rather than relying on client-side feature flags [2], a critical move for heterogeneous deployments where different models need different execution modes. The config layer got cleaner too, with document-handling helpers moved into their own module [5], reducing cognitive load when scanning the config edit state machine. On the observability front, standalone web search calls now emit proper activity telemetry [3], so you'll see search progress in the extension the same way you see it everywhere else. An experimental toggle lets teams opt out of request_user_input at the config level [4], giving you finer control over which tools get input-request behavior.

Quick answers

What shipped in OpenAI on May 30, 2026?
Goal steering now routes through the same injection path as runtime steering, while models gain explicit tool-mode control independent of legacy feature flags. In total, 40 commits and 40 pull requests landed.
Who contributed to OpenAI on May 30, 2026?
4 developers shipped this update, including aibrahim-oai, sayan-oai, dylan-hurd-oai, and jif-oai.
What were the notable OpenAI updates?
Use inject_if_running for active goal steering (#24924), [codex] Add model tool mode selector, and Show activity for standalone web search calls.