The Wire · Showcase
CODEX SHIPS PAGINATED HISTORY INHERITANCE FOR SUBAGENTS
By RepoJournal · Filed · About OpenAI
Codex now preserves conversation context when spawning child agents, fixing a critical gap in multi-agent workflows where history was getting lost on fork.
The headline feature is paginated history inheritance [1], which lets spawned subagents inherit their parent's full conversation context without reimporting the entire model state. This solves a real production problem: agents spawning agents were starting from scratch, burning tokens and losing context. Codex also tightened Windows sandbox behavior [2] by preventing the system from accidentally creating metadata directories that should stay read-only, a security hygiene fix that prevents privilege escalation in elevated environments. On the capability side, deferred environments can now signal their MCP-compatible capability roots on ready, letting tool providers integrate dynamically [3] instead of declaring everything upfront. The Node SDK patched a locale-sensitive header normalization bug [6] that was mangling custom headers like 'OpenAI-Organization' under Turkish locales, a one-line fix that touches every client that sets custom headers. Setup import now auto-detects and imports Cursor configuration [4], eliminating manual setup when migrating from Cursor, while the host skill catalog system switched to world state projection [5] so skill changes ripple through without re-declaring the whole catalog on every turn.
Action items
- → Upgrade openai-node immediately if you set custom headers like OpenAI-Organization openai/openai-node [immediate]
- → Review subagent spawning logic to take advantage of inherited history openai/codex [plan]
- → Test Windows sandbox permission profiles in dev environments openai/codex [monitor]
References
- [1] Preserve paginated history for spawned subagents ↗ openai/codex
- [2] Avoid creating metadata paths in the Windows sandbox ↗ openai/codex
- [3] Propagate deferred environment capability roots to MCP ↗ openai/codex
- [4] Add Cursor support to setup import ↗ openai/codex
- [5] Refresh host skill catalogs through world state ↗ openai/codex
- [6] fix: locale-sensitive header normalization ↗ openai/openai-node