惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
量子位
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
U
Unit 42
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
博客园 - Franky
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Claude Code Regression: How to Diagnose and Fix the Recen...
gentic news · 2026-04-29 · via DEV Community

gentic news

Anthropic's postmortem reveals three regressions in Claude Code: reasoning effort, context retention, and verbosity changes. Here's how to diagnose and fix them.

Key Takeaways

  • Anthropic's postmortem reveals three regressions in Claude Code: reasoning effort, context retention, and verbosity changes.
  • Here's how to diagnose and fix them.

What Changed — The Confirmed Regressions

An update on recent Claude Code quality reports \ Anthropic

A recent Hacker News thread titled "Is it just me or is Claude Code getting worse?" struck a nerve. The user, paying €200/month, reported degraded performance since the 1M context window was introduced with Claude Opus 4.6.

Another commenter pointed to Anthropic's own postmortem, which confirmed three specific regressions:

  1. Default reasoning effort changed — Claude Code became less thorough in its analysis
  2. Context/thinking retention degraded — The agent forgets earlier instructions mid-session
  3. System prompt reduced verbosity — Responses became shorter and less careful

These aren't user perception issues. They're documented changes that impact every Claude Code user.

What It Means For You

If you've noticed Claude Code:

  • Skipping steps it used to take
  • Forgetting instructions from earlier in the same session
  • Giving shorter, less detailed answers
  • Making more mistakes on multi-file edits

It's not your imagination. The model is behaving differently because of deliberate (and possibly unintended) changes to the system prompt and default settings.

Try It Now — Diagnose and Mitigate

An update on recent Claude Code quality reports \ Anthropic

1. Fix the reasoning effort explicitly

Anthropic's postmortem mentions the default reasoning effort changed. You can override this. Add to your CLAUDE.md:

# Reasoning Configuration
Always use extended reasoning effort for code generation and debugging tasks.

Enter fullscreen mode Exit fullscreen mode

Or pass it directly:

claude code --reasoning-effort high

Enter fullscreen mode Exit fullscreen mode

2. Start fresh sessions more often

The context retention regression means longer sessions degrade faster. Instead of continuing a 50-message session, break work into smaller chunks:

# Instead of one long session
claude code "Refactor auth module"
claude code "Add tests for auth module"
claude code "Update docs for auth module"

Enter fullscreen mode Exit fullscreen mode

Each task gets a fresh context window with full attention.

3. Compare against a fixed baseline

Before blaming a stale session or prompt drift, run the same task in a fresh session with explicit effort settings. Create a repeatable test:

# Create a test script
claude code --reasoning-effort high "Refactor this function to use async/await"

Enter fullscreen mode Exit fullscreen mode

Run it against your actual codebase and compare results week-over-week.

4. Watch for the verbosity change

If Claude Code is giving shorter answers, ask it to elaborate. Add to your prompts:

"Be thorough. Include all edge cases and error handling. Don't skip steps."

Enter fullscreen mode Exit fullscreen mode

The reduced verbosity is a system prompt change — you can override it with explicit instructions in your prompt.

The Bigger Picture

This isn't unique to Anthropic. As the HN commenter noted, even Codex has "super weird time limits." The economics of running these models at scale are brutal. Companies are constantly balancing quality against cost.

Anthropic recently announced plans for an IPO as soon as October 2026 and signed a $100 billion AWS infrastructure deal. The pressure to reduce inference costs is real.

But for daily users paying €200/month, the degradation is unacceptable. The good news: most of it is fixable with the right configuration.

gentic.news Analysis

This is a critical moment for Claude Code users. We've covered Claude Code extensively (651 articles and counting — it's trending with 31 articles this week alone). The tool has become essential for many developers, but reliability is its Achilles' heel.

Anthropic's postmortem is refreshingly transparent — most companies don't admit to regressions. But transparency doesn't fix the workflow disruption. Our advice: treat Claude Code sessions as disposable. Start fresh, set effort explicitly, and build repeatable tests.

This follows a pattern we've seen across AI coding tools. As models get larger and context windows expand, the "harness" — the system prompt and agent logic — becomes the bottleneck. Claude Code's architecture (direct file system access, shell access, multi-file editing) amplifies any regression in the underlying model.

For now, the workaround is clear: don't trust the defaults, and don't trust long sessions. Lock in your settings explicitly in CLAUDE.md and start fresh for each task.


Originally published on gentic.news