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-06-08
stories 60

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

MULTI-AGENT V2 RESIDENCY LAYER COMPLETE

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

Codex shipped the memory management backbone that separates durable agent identity from thread residency, unblocking true concurrent execution counting across the multi-agent stack.

The v2 agent model just matured past the threading bottleneck. After last week's reload-on-delivery change, agents could survive thread unloads; today's LRU paging [1] moves that separation into `ThreadManager` itself, letting the system page out loaded subagents when sessions get crowded without losing logical identity. That foundation enables the concurrency recount [3] shipping in parallel: v2 now counts active non-root turns instead of resident threads, with admission checks that stay synchronous but allow slight overshot on competing checks. The API surface gets sharper too [4]. Renaming `close_agent` to `interrupt_agent` [4] fixes the contract - v2 agents stay reusable after interruption, so the tool name should match what it does: pause the current turn, not destroy the agent. Web search in code mode [2] also lands today, consuming plaintext output from `/v1/alpha/search` and exposing `web.run` to nested JavaScript calls. Finally, the resume path gets fixed [5]: the old logic still eagerly reopened entire descendant trees, which defeats the point of residency management. Interrupted agents that go idle are now eligible for eviction instead of staying pinned.

Quick answers

What shipped in OpenAI on June 8, 2026?
Codex shipped the memory management backbone that separates durable agent identity from thread residency, unblocking true concurrent execution counting across the multi-agent stack. In total, 29 commits, 29 pull requests, and 2 releases landed.
Who contributed to OpenAI on June 8, 2026?
2 developers shipped this update, including jif-oai and rka-oai.
What were the notable OpenAI updates?
feat: add v2 agent residency lru, [codex] Enable standalone web search in code mode, and feat: count V2 concurrency by active execution.