What happened
On July 24, 2026 — the same day Claude Opus 5 was released — Anthropic published a post by Thariq Shihipar revealing a counterintuitive insight: the Claude Code team removed over 80% of the system prompt for Claude Opus 5 and Claude Fable 5 with no measurable loss in programming benchmarks.
Over time, Claude Code's system prompt had accumulated hundreds of specific rules designed to prevent problematic behaviors from earlier models. Directives like "do not write comments by default," "never write multi-paragraph docstrings," and "do not create planning documents unless asked" were necessary for models with less refined judgment. With Claude 5, these constraints became counterproductive.
Instead of protecting the user, the excess of rules created a new problem: conflicting instructions. When the system prompt, the CLAUDE.md file, the skills, and the user prompt all contain overlapping guidelines, the model wastes context window capacity attempting to resolve contradictions before starting the actual task.
The rule that replaced dozens
The post's most revealing example is the replacement of multiple prescriptive commenting and documentation rules with a single principle: "Write code that reads like the surrounding code — match existing comment density, naming conventions, and language."
This approach — termed "unhobbling" by Shihipar — stems from the realization that Claude 5 models possess better contextual judgment than their predecessors. Rules that previously prevented problematic behavior now merely bottleneck capabilities the model would have handled correctly on its own.
The six documented changes
The post outlines six specific shifts in context engineering for Claude 5. The overarching pattern: replacing explicit, prescriptive rules with high-level guidance that trusts the model's judgment. The practical implication for developers: CLAUDE.md files and system prompts crafted for 2024 or 2025 models are likely over-constrained for Claude 5.
Anthropic also launched the /doctor command in Claude Code — a tool that audits existing context and suggests simplifications. The recommendation is to run a doctor pass and re-evaluate local benchmarks before accepting every reduction, as results can vary by codebase.
The cost impact
Anthropic did not alter its API pricing alongside this announcement. The potential savings stem from a different avenue: fewer tokens of repeated context per request. An 80% smaller system prompt translates to more context window space for productive work and fewer paid input tokens on every API call. For teams running production agent workflows that repeat heavy context on every request, the financial impact can be substantial.
The broader signal
The post was met with 197 points and 133 comments on Hacker News. The broader signal: as AI models grow more capable, context engineering best practices have inverted. What was good practice in 2024 — more explicit restrictions — is now a liability. A model with superior judgment requires less textual supervision, not more.

