The short answer
Most of the time Claude seems dumb because the conversation got long, a setting changed underneath you, or you are being throttled. Some of the time it is because Anthropic shipped a bug, and they have a track record of admitting that, eventually. Almost none of the time is it because the model was secretly made worse.
The rest of this page is the long answer. If you want the crowd’s answer instead, it is right here:
Reasons 1–3: it’s the context
1. Context rot
Anthropic’s own documentation puts it plainly: “As token count grows, accuracy and recall degrade, a phenomenon known as context rot.” A conversation that was brilliant at message five is a different beast at message eighty, even on the same model, with the same settings, on the same day. The instruction you gave at the top is still in there; it just weighs less.
Fix
Start a new conversation more often than feels polite. In Claude Code, /clear resets and /compact summarizes; both beat soldiering on.
2. The window is full and things are being compacted
Every model has a hard context limit. Long, tool-heavy sessions hit it, and when they do, older content is summarized or dropped so the conversation can continue. Anthropic recommends compaction as the primary strategy for long sessions, which means “Claude forgot the thing from an hour ago” is frequently working as designed.
Fix
Keep durable instructions somewhere that survives compaction: a Project in claude.ai, or a CLAUDE.md file for Claude Code. Re-state the current goal after a compaction instead of assuming it carried over.
3. It never had the context in the first place
Agentic work is only as good as what is actually in the window: the files that were read, the tool results that came back, the error that was pasted in full instead of paraphrased. Anthropic calls this context engineering, and their guidance is to find the smallest set of high-signal tokens that gets the job done rather than dumping everything in.
Fix
Before asking “why is this wrong?”, ask “what did it actually see?” Point at the file, paste the whole error, and put long documents before the question, not after it.
Reasons 4–6: it’s the settings
4. Effort is set lower than you think
The effort parameter controls how many tokens Claude spends on a response, trading thoroughness for speed and cost. It is a dial, not a quality guarantee, and the default position of that dial is chosen by whatever app you are using. In early 2026 Claude Code moved its default from high to medium to cut latency; weeks of reports that Claude felt less intelligent followed before it was reverted on April 7. That is the canonical example of reason four.
Fix
Set it yourself: /effort in Claude Code, or output_config.effort on the API. Never trust a default you have not checked this month.
5. Extended thinking is off, or budgeted too low
Thinking is where the hard reasoning happens. On the API it is opt-in and budgeted; in apps it is a toggle. A model that is not allowed to think through a problem will happily give you the first plausible answer instead, and that reads as dumb.
Fix
For anything with more than two steps, turn thinking on and give it room. Watch the cost, but watch the rework you avoid too.
6. You are on a different model than yesterday
Apps pick defaults, defaults change, and the lineup moves fast: Anthropic’s current documentation lists Opus 5.5 as the recommended default for most work, with Fable 5.1 for the hardest reasoning and Sonnet 5 and Haiku 4.5 below it. A workflow tuned for one tier will feel off on another, in both directions.
Fix
Pick the model explicitly, and note which one you were using when something worked. “Claude” is a family, not a model.
Reasons 7–9: it’s Anthropic (sometimes)
7. There is an incident, whether or not the status page says so
Between August 5 and September 18, 2025, three separate infrastructure bugs intermittently degraded Claude’s responses. One misrouted up to 16% of Sonnet 4 requests at its worst hour; another produced stray Thai or Chinese characters in English replies; a third was a TPU compiler bug. Anthropic published a full postmortem. None of it looked like a classic outage.
Fix
Check status.claude.com first, then check the crowd. Quality incidents tend to show up here before they show up there.
8. The app changed, not the model
The April 2026 Claude Code postmortem is the textbook case: the API was unaffected, but three product-layer changes (the effort default above, a caching bug that wiped Claude’s reasoning history every turn instead of once, and a system-prompt line capping response length) added up to six weeks of “Claude Code got dumb” reports. All three were fixed by April 20 (v2.1.116).
Fix
Update the client, read the release notes, and if a specific version broke something, say which one when you vote. The Claude Code guide has the symptom table.
9. You are being rate-limited or usage-limited
Claude Code, claude.ai and the API all meter usage, and the limits move. A 50% weekly-limit promotion ran from May 13 to September 13, 2026, after which limits settled at 25% above the pre-promotion level, which is also a drop of a sixth from what people had grown used to. A throttled, retrying, half-finished session feels exactly like a dumb one.
Fix
Check your usage before you check the model. If the limit just moved, the model probably did not.
The one that isn’t a reason
In both postmortems Anthropic notes that the early reports were “difficult to distinguish from normal variation in user feedback.” Read that charitably: some fraction of “it got dumber” is a run of hard problems, a bad mood, or the model being the same while your expectations went up. Read it uncharitably: their detection lagged for weeks, twice.
Either way, the fix is the same. Stop arguing from one conversation and look at a number. That is what this site is for: a daily score, a history you can see a slope in, and a feed full of other people’s receipts.
The fix list
In order of how often they work:
- New conversation (
/clearor/compact). - Set effort and thinking explicitly; do not trust the default.
- Pick the model explicitly.
- Put stable instructions in a Project or
CLAUDE.md. - Give it the actual file, the actual error, the actual document.
- Check usage limits and the date any limit last changed.
- Check the status page.
- Update the app or CLI.
- Vote, so the next person searching this gets a better answer than you did.
Questions people actually ask
Is Claude getting worse over time?
There is no public evidence of a deliberate, permanent downgrade. There is public evidence of two multi-week periods (Aug–Sep 2025 and Mar–Apr 2026) where bugs made Claude worse for many users, both documented by Anthropic after the fact. For a longer-term view, the score history on this site is one finalized community verdict per day.
See the score history or read what Anthropic has said about nerfing.
Why is Claude so lazy?
"Lazy" is usually one of three things: a low effort setting (the model is told to spend fewer tokens), a conversation so long that instructions from the start have lost their weight, or an app-level prompt that asks for short output. In the April 2026 incident all three happened at once in Claude Code, which is why the word came up so often.
Does Claude get dumber at night or when servers are busy?
Anthropic states in writing that it never reduces model quality due to demand, time of day or server load. What does change under load is availability and usage limits, which can feel like the same thing when your session slows to a crawl.
Why does Claude keep forgetting what I told it?
Because every message competes for the same context window. As a conversation grows, accuracy and recall degrade (context rot), and once the window is full, older turns are compacted or dropped. Put durable instructions in a Project or CLAUDE.md, and start fresh conversations more often than feels natural.
Why is Claude dumber than ChatGPT today?
We only track Claude, so we cannot compare. Most day-to-day "X is dumber than Y" impressions come from different defaults (effort, thinking, model tier) rather than the models themselves; check what each app is actually configured to do before concluding anything.
Sources
Every factual claim above comes from one of these. Opinions, jokes and the score are ours.
- Context windows (Claude Docs)
- Effective context engineering for AI agents (Anthropic Engineering)
- Effort (Claude Platform Docs)
- Extended thinking (Claude Docs)
- Models overview (Claude Platform Docs)
- A postmortem of three recent issues (Anthropic Engineering, Sep 17, 2025)
- An update on recent Claude Code quality reports (Anthropic Engineering, Apr 23, 2026)
- Models, usage and limits in Claude Code (Claude Help Center)
- Our approach to rate limits for the Claude API (Claude Help Center)
- Claude Code May–August 2026 weekly limits promotion (Claude Help Center)
- Claude Code slash commands (Claude Code Docs)
- Claude status page (status.claude.com)
Your turn
So, is Claude dumb today?
One vote per person per UTC day. Your number moves the needle the moment it lands; the comment is optional but encouraged.
More guides
- Is Claude dumb today?The live answer, how to read the score, and a 60-second checklist before you blame the model.4 min read
- Is Claude nerfed?The written record: two postmortems, two denials, and a checklist for telling an incident from a bad day.7 min read
- Is Claude Code getting worse?Symptom-to-cause table for the CLI, the April 2026 timeline, and the slash commands that fix most of it.7 min read
- Is Claude down?The official status page first, then the community vibe check for the outages that never show up there.4 min read