The Exception That Could Break AI Agent Security
OpenClaw shipped a feature letting child agents see everything their parent has done — a real workflow win that also quietly widens what a misconfigured agent can reach.

OpenClaw v2026.4.23-beta.5 shipped Thursday with a feature that makes multi-agent delegation substantially more practical: child agents can now share their parent's full conversation history, not just receive instructions in isolation. The change — called forked context — means an agent can spin up a sub-agent to handle a subtask and that sub-agent can see the full context of the ongoing work, including every tool result and intermediate step, rather than starting from zero. That's a real usability improvement for anyone building agent pipelines. It's also a quiet shift in what a child agent can access, and the distinction matters more than the release notes suggest.
Before this update, OpenClaw's sessions_spawn — the mechanism for launching a child agent — ran with clean isolation: the child received a UUID-based session key and no awareness of the parent's conversation. It was a deliberate architecture: the agent cannot leak what it cannot see. Delegation required explicit context-passing through external code, which was verbose, fragile, and visible. You had to mean it.
Forked context changes that equation. With a single flag, the same sessions_spawn call can produce a child agent that inherits the parent's entire transcript — every prompt, every tool result, every intermediate output. For orchestration chains handling complex tasks, this is genuinely useful. For developers who enable it out of convenience or habit, it expands what the child agent can see in ways that may not be immediately obvious.
The feature is opt-in and clean isolation remains the default. The release notes are clear about that, and the implementation includes prompt guidance and metadata hooks. But security boundaries in developer tooling have a documented pattern of erosion: a flag marked "for power users" gets copied into tutorials, then boilerplate, then assumption. Nobody ships the unsafe version on purpose. It accretes.
Other changes in beta 5 are more straightforward. Image generation through Codex OAuth, without requiring an OPENAI_API_KEY, removes real operational friction for agents that produce visuals. OpenRouter image output follows the same pattern. Per-call timeoutMs for media tools addresses a genuine pipeline pain point — generation calls that run longer than the provider's default window have been difficult to reason about in agentic systems. These are production reliability improvements, not architectural bets.
The forked context feature is the one that will be tested in ways the QA coverage cannot anticipate. If it works cleanly, it becomes a pattern other frameworks adopt. If developers reach for it because the option exists rather than because the architecture requires it, the blast radius question gets answered in production — and that's the version of the story nobody wants to write.
OpenClaw crossed 250,000 GitHub stars in March 2026, surpassing React, according to star-history tracking. The milestone reflects a large installed base already depending on the framework's isolation model as a core assumption. That assumption is now a configurable choice — which is progress, and also the thing to watch.
Primary source: OpenClaw v2026.4.23-beta.5 GitHub Release Notes. Sessions_spawn isolation behavior documented at Stanza Dev. Context inheritance documented at OpenClaw Session Tools.






