[BUG] Cowork (Not Claude Code) 1M context window unavailable on Max 5x — regression from March 20
Open 💬 33 comments Opened Mar 22, 2026 by RevolutionaryTank
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
The 1M context window for Opus 4.6 is no longer available in Cowork, despite being available and working correctly as recently as March 21, 2026. Claude Code on the same account (Max 5x) still has full 1M context — this is a Cowork-only regression.
What Should Happen?
Cowork should use the 1M context window with Opus 4.6 on Max 5x, consistent with the March 13, 2026 GA announcement and consistent with Claude Code behavior on the same account.
Error Messages/Logs
None
Steps to Reproduce
- Open Claude Desktop → Cowork mode
- Start a new Cowork session with Opus 4.6
- Check context window size (displayed next to model label.
- Context shows "Opus 4.6" instead of "Opus 4.6 (1M Context)"
- Start a new Code session, observe "Opus 4.6 (1M Context)" is showing.
Claude Model
Opus
Is this a regression?
Yes, this worked in a previous version
Last Working Version
_No response_
Claude Code Version
Claude 1.1.7714 (3bd6f6) 2026-03-19T14:50:53.000Z
Platform
Anthropic API
Operating System
macOS
Terminal/Shell
Terminal.app (macOS)
Additional Information
_No response_
33 Comments
Found 1 possible duplicate issue:
This issue will be automatically closed as a duplicate in 3 days.
🤖 Generated with Claude Code
Not a duplicate. https://github.com/anthropics/claude-code/issues/36760 is a feature request. This issue is a bug -- users no longer have access to the 1M context window in Cowork because of this regression issue.
I can confirm this regression on Max from local runtime evidence on the same Mac.
This is not just the model picker label. Cowork’s actual runtime context window changed:
model: "claude-opus-4-6[1m]"contextWindow: 1000000model: "claude-opus-4-6"contextWindow: 200000I also asked Cowork directly in a fresh session:
What is your current context window size right now? Reply with only the numeric token limit.It replied:
200,000 tokens.Important detail:
[1m]variantI also tried all obvious local fixes without success:
ANTHROPIC_DEFAULT_OPUS_MODEL=claude-opus-4-6[1m]~/.claude/settings.jsonNone of those restored 1M in Cowork.
This looks like a real regression between March 18, 2026 and March 22, 2026, not local misconfiguration. I have a private evidence bundle with logs if Anthropic wants it.
Confirming this on Claude Desktop 1.1.7714 (3bd6f6), macOS, Max plan. Context shows 'Opus 4.6' without the 1M label. New sessions fail consistently — this is blocking active work. Was working correctly before this build. Pls fix!
Same issue here.
Plan: Max
Environment: VSCode extension v2.1.79 (updated from v2.1.76)
OS: Windows 11
Symptom: Opus 4.6 with 1M context was available last week, now only 200k. /model does not show opus[1m] as an option.
Troubleshooting: No settings changes on my end between when it worked and when it stopped.
Adding on to this w/ extra log evidence. I originally posted in #36351 (comment).. the issue is now 5 days old and has persisted through 4 consecutive app updates with zero fix.
Cowork Logs (
cowork_vm_node.log)The
[Spawn:create]entries show the actual--modelargument passed to/usr/local/bin/claudefor each Cowork session - not a UI label, the runtime model.Last working spawn > first broken spawn, same app version (1.1.7714):
Persisted through every subsequent app version
Reached out to support.. here's the unfortunate ticket timeline
Opened March 19 at 16:40 PT, within ~2 hours of the regression:
5 days, $200/mo Max account, fully documented server-side regression, zero follow-up.
As @mihai-popa-99 noted, this is Cowork-specific.. Claude Code CLI on the same machine still resolves
claude-opus-4-6[1m]. The model resolution path inLocalAgentModeSessionManageris evaluating the 1M entitlement differently than CLI, and whatever server-side state it checks has been broken since March 19 19:33 UTC. No client-side workaround exists. This requires a server-side fix.Confirming this regression — Windows / Max plan / Cowork
Environment:
What happened:
1M context was available and working in Cowork sessions. After ~March 20, new Cowork sessions reverted to 200k with no changes on my end. Claude Code on the same account is unaffected — this is Cowork-only, consistent with the OP's report.
I have not received any communication from Anthropic about this change, either in-product or via email. I've contacted Anthropic support separately and had no response.
Impact:
I use Cowork with a large workspace (versioned CLAUDE.md, project registry, skills directory, task queue). With 200k, the system context alone consumes a significant portion of the available window, leaving limited headroom for actual work. The 1M window made Cowork genuinely viable for complex multi-file projects; at 200k it's severely constrained.
Cross-references:
This appears to be part of a recurring pattern rather than an isolated incident:
3885610113) controlling 1M access in Cowork — session JSON files show older sessions usingclaude-opus-4-6[1m]while new sessions useclaude-opus-4-6. This confirms the rollback was a flag change, not a client-side bug.[1m]and causing rate limit errors. The current regression may be an overcorrection from fixing that issue.invalid("not a Claude Code issue") which, while technically accurate, doesn't resolve the problem for affected users.Request:
The March 13 GA announcement stated that 1M context is included at standard pricing for Max, Team, and Enterprise plans. The current state is inconsistent with that announcement.
Same issue, Opus 4.6 1M not available on Cowork but available on Claude Code. Plan: Max 5x. Platform: Mac (Claude Desktop).
Same issue. Max20 here. No one cares at Anthropic. They only put out features for Claude Code, never matching Claude Cowork... it's beyond the pale... and the work compounds and we can never catch up with tiny windows.
I personally had upgraded all my workflows to the 1M context window (20+ MCPs running, 120+ tools running, etc).. then without word or warning, everything is regressed. and now nothing works.
Nice work Anthropic 👎
I asked Claude code and chat what it thought - interesting (without directing it for the answer it prob thought I wanted) was its a clear business decision that they cannot afford the token demand on the servers... I am now running some work in code 1m that should not really be there but its not as hard as I thought. Still, all the systems that worked so well in CW1m are now back to being painful... Not good for $200 - 400 pcm.
same bug at max x20 on claude cli on windows host. in parallel session in docker devcontainer all ok
## Fix: Opus 4.6 1M context "not available for your account"
### Root cause
After Claude Code update, OAuth tokens get cached with
subscriptionType: nulland
rateLimitTier: null. The client doesn't know you're on Max plan → blocks 1M.claude logout+claude logindoes NOT help — it reuses stale tokens.### Diagnosis
cat ~/.claude/.credentials.json
# If you see "subscriptionType":null,"rateLimitTier":null — that's it.
### Fix (one command)
rm ~/.claude/.credentials.json && claude login
### Verify
cat ~/.claude/.credentials.json | grep subscriptionType
# Should be: "subscriptionType":"max" (or your plan)
Same bug here. Cowork does not have 1M context but Code has.
Above fix does not work, as I have "subscriptionType":"max","rateLimitTier":"default_claude_max_20x"}
Please clarify and fix. I have several Cowork sessions stuck there, even compact does not work.
Confirming this too. Max 20 plan on MacOS, latest Claude desktop version. And like the message above, ton of compaction errors with context being saved to a temporary claude.md files incorrectly. I can work within my plugins and skills fine but any sort of development is pretty much halted. You all need to fix this. Not paying $200 a month for a tiny context window, constant compaction and errors.
Confirming this regression on Max 5x as well.
Context: I use Cowork daily for strategic advisory work (deeptech commercialization) -- long document analysis, multi-step reasoning over market research, adversarial stress-testing of proposals. The 1M context window was a genuine workflow improvement when it was available.
Since the regression, I've switched back to Claude Code CLI which still has 1M context working correctly. But Cowork's UI is materially better suited for non-coding strategic work -- the CLI workaround means losing the UX benefits that made Cowork compelling for this use case in the first place.
Would appreciate any visibility on whether this is a known temporary rollback (possibly related to the rate limiting issues in #33154?) or an unintended regression. Even a rough ETA would help us plan around it.
Today I tried the old session and it seems 1M context restored, although the model still shows Opus 4.6
Is this in CoWork? And if so, how are you determining your context window size? When I look at my session json files it still shows 4.6 without the 1m like it shows in code.
Still at 200k (cowork) in UK 20x plan. Easy to test v code 1m.
Confirming this regression on Max 20x, macOS.
I relied on 1M context in Cowork for long-horizon strategic work — multi-file analysis, extended planning sessions where maintaining full context across hours of iteration was the entire value prop. The drop back to 200K fundamentally changes what Cowork is useful for.
Claude Code on the same account still has 1M, which makes this feel like an oversight rather than an intentional product decision. If the rollback was driven by rate limit complaints (#33154), the fix should be plan-aware gating or an opt-in toggle — not a blanket kill switch that punishes Max subscribers who had zero issues.
Happy to help test if a fix ships behind a flag.
Same. The quiet rollback is highly frustrating, but even worse is the lack of transparency about it, without offering any kind of an opt-in toggle (even a paid one!)
Adding to this. 1M context is essential for some tasks, and while I like Cowork I'm getting pushed off to Claude Code instead. Please give us a toggle of the same type given for Claude Code on the desktop app.
MacOS, Max 20x - Really need this fixing, causing no end of issues with my workflow that was build around 1M.
Unacceptable decline in the quality of the work and the platform, with the capacity of the 1M model—on which all workflows were based—reduced to one-fifth of its original level. A complete lack of transparency and communication for the past month, despite repeated reports of the issue. No interest in restoring a critical feature that has been unavailable for a month, even though users are paying the same subscription fee and spending hundreds of dollars on APIs for poor-quality content and a limited scope.
edit: at around 02:00 GMT+2 on 16/04 there was again the 1M context for Opus and Sonnet 4.6 for a while. After few hours it was disabled again and set to 200k for all in Cowork
OMG - thanks @Campa202 for your comment (1M back briefly then 200K again) - I thought I was hallucinating ! What happened on my side :
Again - this is totally unacceptable. With Opus 4.7 it's even worse - the compaction has gotten better in that it hasn't broken anything but even with exporting context (wrote a skill to do this), it's very inefficient. I dont want to have to use code for things I do in CoWork. I keep them separate. This needs fixed. I dont understand how no now has even looked at this and how only 12 people complain about this - we cant be the only power users.
Love all the upgrades with Anthropic, but this one really needs to be moved to the front of the line.
They have added 2-3 features daily for a month to Claude Code. They truly
don’t give a flying fig about cowork
The result? 120 sessions instead of 30, I use it more hitting a wall and
they would rather I not use the compute. Guess what? Any delegation to
other model increases hallucinations. It’s worse using dispatch.
On Sat, Apr 18, 2026 at 11:44 planginc @.***> wrote:
Same issue with both Team and Max 20x plan
Reproducing on macOS, Cowork with Max plan, confirmed with logs
Adding log evidence to support this report. My claude.ai-web.log shows consistent 404s on the [1m] model config across 3 weeks, with no fallback to the standard 200K model:
40+ identical errors spanning May 14–June 2, across both opus-4-7[1m] and opus-4-8[1m].
Impact: Because Cowork tries and fails to load the 1M config on every session, it never falls back cleanly. Sessions hit the context limit and cut off entirely rather than compacting. Adding CLAUDE_CODE_DISABLE_1M_CONTEXT: "1" to ~/.claude/settings.json has no effect. These errors are in the web layer, not the CLI.
When I enabled usage credits to resolve it, sessions expanded into the full 1M window with no compaction triggering (correct behaviour for 1M, but unexpected and expensive, burned ~£20 in a couple of hours on normal Cowork tasks).
The fix needed: Cowork should fall back to the standard 200K model when the [1m] config returns 404, rather than silently failing.
Confirming this still reproduces on a newer build (2026-06-13).
Same symptom as the original report: the Opus 1M-context option is missing from
the Cowork model picker in the desktop app, while the standalone Claude Code
CLI offers and uses 1M correctly on the same signed-in account.
Environment:
offers/uses 1M on the same account)
Notes:
an entitlement difference.
embedded Claude Code (still 2.1.170).
So the Cowork-only 1M regression persists on desktop 1.12603.1 / embedded CC 2.1.170,
a newer build than the original report.
Mine works again - however, CoWork does not say 1m anymore - but the context is in fact 1m - just run /context and see. Anthropics emailed me and told me they were aware of the problem and that they thought it was fixed in previous releases. I said it wasn't because there was no 1m but the reality is that the context window size is there. YMMV.
accurate thank you! i just tried and it worked. I appreciate it!!!!
<img width="988" height="196" alt="Image" src="https://github.com/user-attachments/assets/90cab60b-f50e-40f1-aa73-bd9c3a97702f" />