Anthropic is cutting off OpenClaw access for Claude subscribers on April 4th — and the official explanation doesn't hold up to scrutiny.
The company's stated reason is capacity: OpenClaw users were generating "unsustainable" load on Claude's infrastructure. Boris Cherny, Head of Claude Code at Anthropic, confirmed the policy change in a post on Friday evening, saying subscriptions "weren't built for the usage patterns of these third-party tools." Users get a one-time credit equal to their monthly plan cost and are being funneled toward pay-as-you-go API pricing.
But a GitHub issue filed by OpenClaw contributors tells a more specific story. Anthropic's prompt caching — a feature that lets the model reuse previously processed context instead of reprocessing it from scratch — achieves only a ~10% hit rate in OpenClaw sessions, according to measurements on 143 consecutive API calls. The root cause is architectural: buildAgentSystemPrompt, the function that assembles OpenClaw's system prompt, concatenates static content (tool descriptions, skill definitions, safety rules) with dynamic content (current time, runtime info, workspace file state) into a single string. Anthropic's prompt caching requires an exact prefix match to work — so any change in the dynamic section invalidates the entire cache for the 60–120KB prompt. Every single request processes from scratch.
The proposed fix is documented in the same GitHub issue: split the system prompt into separate content blocks, caching only the static prefix. Anthropic's own tools — Claude Code and Cowork — are built around this principle and achieve high cache hit rates as a result. OpenClaw's architecture makes that impossible without a refactor.
Peter Steinberger, OpenClaw's creator, acknowledged the cache inefficiency in a post on X, noting that he and OpenClaw board member Dave Morin "tried to talk sense into Anthropic" and managed to delay the cutoff by one week. Steinberger told Business Insider that "many users only signed up for their sub because of OpenClaw" and that the timing of the announcement — a Friday evening — felt deliberate. The cutoff takes effect April 4th at 12pm PT.
The timing of the announcement adds another layer. Steinberger joined OpenAI in February 2026, according to The Verge, a detail Anthropic's statement did not address. Anthropic declined to comment to multiple outlets.
OpenClaw's growth has been extraordinary by any measure. The framework reached 145,000 GitHub stars by early February 2026, a pace its founder described as unlike anything he'd seen in 13 years of building developer tools. Peak traffic hit 2 million visitors in a single week. The Moltbook launch — a Reddit-style social network designed for AI agents to talk to each other — drove a wave of mainstream coverage and new signups. Users built agents to manage email, check in to flights, handle administrative work, and automate household logistics.
That kind of adoption creates real compute costs. Prompt caching exists precisely to reduce those costs — by keeping repeated context in memory, the model does less work per request. OpenClaw's architecture defeats that mechanism entirely. Anthropic's official position frames this as a capacity management decision. The technical record suggests it is also a product incompatibility that Anthropic chose to resolve by terminating access rather than collaborating on a fix.
The cutoff affects subscribers directly. Users who signed up for Claude specifically to run OpenClaw agents now need to either purchase separate API credits or use Anthropic's own tooling. Cherny said discounted "extra usage bundles" are available, but the effective price for OpenClaw users rises regardless. Google imposed similar restrictions on Gemini CLI users connecting through third-party tools, though that action was framed as a terms-of-service violation rather than a capacity issue.
What happens next depends on whether Anthropic reopens the architecture conversation. The GitHub issue documenting the fix has been open since early 2026 and includes a concrete implementation path. Whether Anthropic views OpenClaw as a capacity problem worth solving — or a competitor worth inconveniencing — will determine whether this is a temporary policy shift or a permanent fork in the road between Anthropic's ecosystem and everyone else's.