By Thorsten Meyer

Anthropic deleted more than 80 percent of Claude Code’s system prompt for its newest models — Opus 5 and Fable 5 — and measured no loss on its coding evaluations.

That number did not land for me as a product announcement. It landed as an audit notice.

I run 477 WordPress properties, four or five active codebases, a defense-ISR product line, and an editorial pipeline with a format standard strict enough that I can describe it in a single paragraph and expect a four-file package back. Every one of those is a CLAUDE.md, a skill file, or a house rule I wrote down so I would not have to say it again.

Most of those rules were written for a generation of models that has now passed.

The uncomfortable part is not that the guidance was wrong. It is that it was right, and the trade changed underneath it.

AI DISPATCH · INSIGHTS Context engineering · August 2026
Auditing a working context stack
The Rules That Survive

Anthropic removed more than 80 percent of Claude Code’s system prompt for its Claude 5 generation models and measured no loss on coding evaluations. Read as an audit notice rather than a product announcement, it asks one question of every line you have written: would a strong model behave worse without it?

80%+
Of Claude Code’s system prompt removed
0
Measurable loss on coding evals
6
Documented shifts in guidance
2
Context regimes if you also run local models
01
Then and now

Six practices that hardened into doctrine, and what replaced each of them. The old guidance was not wrong — it was calibrated to models that needed it.

Then
Give Claude rules
Hard prohibitions to prevent worst cases
Now
Let Claude use judgement
Match the surrounding code’s density and idiom
Then
Give Claude examples
Worked cases as the first rule of tool use
Now
Design the interface
Expressive parameters beat demonstrations
Then
Put it all upfront
One monolithic always-loaded file
Now
Progressive disclosure
Skills and deferred tools loaded on demand
Then
Repeat yourself
Same instruction at both ends of context
Now
One authoritative description
The tool description is the canonical place
Then
Memory in CLAUDE.md
The # hotkey writes everything down
Now
Automatic memory
CLAUDE.md was never meant to be a diary
Then
Simple markdown specs
Prose describing the thing you want
Now
Rich references
Artifacts, test suites, rubrics, code to port
02
The one test, applied to a real stack

Every line in a CLAUDE.md, skill, or house standard sorts into three buckets. The examples below are from a working publishing and product portfolio, not a demo repository.

The test
Would a strong model behave worse without this line?
Keep · non-derivable
Encodes something the repository cannot show.
  • PIL does not decode HTML entities — plain ampersand only
  • Self-hosted fonts, no CDN (DSGVO posture)
  • Scoped CSS wrapper — global selectors leak into WordPress
  • Document content never leaves local inference
  • No -1 sentinel for unlimited plan values
Move · situational
Real, but not needed on every request.
  • Four-file editorial package spec becomes a skill
  • Infographic conventions split into their own file
  • Image specifications loaded only when rendering
  • Verification steps extracted, one-line pointer left behind
Cut · scaffolding
Restates taste or facts already visible.
  • Long tone prescriptions in the editorial skill
  • Stack declarations readable from package.json
  • Queue instructions duplicated across two files
  • Prose descriptions of a style that already ships as HTML
03
The part that does not travel

Unhobbling is a capability dividend, and it does not pay out evenly across an inference stack.

Bear case
This is frontier-model advice

The guardrails just deleted are precisely the guardrails a 32-billion-parameter open-weight model still needs. Anyone targeting 70 to 90 percent local inference now maintains two context regimes rather than one — a cost the guidance does not price, because Anthropic does not have it. A second concern is governance: moving behaviour from written rules into model judgement makes your effective policy whatever the current model thinks is appropriate. That is fine until the model changes.

Hosted frontier
Lean context
Delete the scaffolding, keep the non-derivable, disclose progressively.
Local fleet
Structured context
Explicit rules, worked examples, and repetition still earn their tokens.
04
The audit, in the order that works

Expect to delete more than half of what currently loads on every request.

Run /doctor across active repositories for a first pass at rightsizing skills and CLAUDE.md files.
Grep for NEVER, ALWAYS, DO NOT and all-caps prohibitions. Apply the one test line by line.
Resolve contradictions first. Conflicting instructions tax every request and cost nothing to fix.
Replace prose descriptions of visual or structural standards with the shipped artifact itself.
Keep a separate, more explicit context file for local-model runs. One instruction set does not serve both.
The rules that survive are the ones encoding something the world taught you
and the repository cannot show.

What actually changed

Thariq Shihipar's post from Claude Code lays out six shifts. Paraphrased, they run like this.

Rules became judgement. Early Claude Code shipped hard prohibitions — no comments, no multi-line docstrings, no planning files unless asked — because the worst case was worse than the average case. Newer models read surrounding code and match its density and idiom instead. The instruction became descriptive rather than prohibitive.

Examples became interface design. The old first rule of tool use was: show the model examples. Anthropic now finds that examples narrow the exploration space. A well-typed enum in a tool schema communicates intended behaviour more cleanly than three worked cases.

Front-loading became progressive disclosure. Verification and code review left the system prompt and became skills the model calls when relevant. Some tools are deferred — their full definitions are fetched only on demand, so a large tool surface costs nothing until it is used.

Repetition became a single authoritative description. Older models sometimes needed an instruction at the top of context and again at the bottom. That duplication is now removable; the tool description is the canonical place.

Manual memory became automatic memory. The # hotkey habit of writing everything into CLAUDE.md is superseded. CLAUDE.md was never meant to be a diary.

Simple specs became rich references. A markdown description of a design is a lossy encoding of the design. An HTML mockup, a test suite, a function in another codebase to port, or a rubric a verifier agent can apply — all of these are higher-fidelity than prose about them.

There is a shipped command behind the advice. /doctor in Claude Code inspects your skills and CLAUDE.md files and helps rightsize them.

The AI Prompt Playbook: Master AI Prompt Engineering with 140 Ready-to-Use Templates for ChatGPT, Claude, Gemini & Copilot

The AI Prompt Playbook: Master AI Prompt Engineering with 140 Ready-to-Use Templates for ChatGPT, Claude, Gemini & Copilot

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

The one test

Strip the six shifts down and there is a single question underneath all of them:

Would a strong model behave worse without this line?

If the answer is no, the line is scaffolding. It was holding up something that now stands on its own, and it is costing you tokens plus — more expensively — reasoning cycles spent adjudicating between your rule and someone else's.

That second cost is the one people miss. Anthropic's own diagnosis was that their transcripts contained instructions actively fighting each other: leave documentation where appropriate, sitting a few hundred tokens away from an all-caps ban on comments. The model resolves the contradiction before it does the work. You pay for the resolution every single request, on every request, forever.

If the answer is yes, the line is non-derivable — it encodes something the model cannot see from your repository, your file system, or the code in front of it. Those survive.

Amazon

AI coding evaluation software

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

Running the test on my own stack

I did this honestly, which meant deleting more than I expected.

Non-derivable. Kept.

  • PIL does not decode HTML entities. Featured-image generation uses a plain ampersand, never the escaped form. Nothing in the codebase reveals this; you learn it by shipping a JPEG with & burned into the headline.
  • Self-hosted fonts only, no Google CDN. This is a DSGVO posture for German-market properties, not a performance preference. A model optimising for load time would reach for the CDN and be wrong.
  • All infographic CSS scoped under one unique wrapper class, custom properties namespaced. This exists because a global selector inside a WordPress Custom HTML block turns the entire page background dark. That is a deployment-environment fact, invisible from the file.
  • Rannsaka never sends document content to a hosted endpoint. That is a client-confidentiality rule, and it is exactly the kind of hard constraint the post says to keep.
  • pricing.ts is the single source of truth, and no plan uses -1 to mean unlimited. Both are scar tissue from real bugs.

Scaffolding. Deleted.

  • Long tone prescriptions in the editorial skill. Short paragraphs, sparing emphasis, no hype verdicts — the model already produces this given two paragraphs of context and a previously shipped piece. I was restating taste it had already learned.
  • Stack declarations. Next.js 15, TypeScript strict, PostgreSQL with Drizzle — all of this is visible in package.json in under a second. Writing it in CLAUDE.md told the model nothing and cost me tokens on every session.
  • Duplicated queue instructions. SELECT … FOR UPDATE SKIP LOCKED appeared in the system context and in the job-runner documentation. One copy now, in the place it belongs.

Moved, not deleted.

The four-file editorial package specification was 200-odd lines sitting in always-loaded context. It is now a skill with a pointer, and the pointer is one line. Infographic conventions, PIL gotchas, and image specifications are separate files inside it, loaded when an infographic is actually being built rather than when I ask a question about EU chip policy.

Converted to references.

This was the largest win, and I nearly missed it. I had been describing the AI-Dispatch infographic style in prose — warm paper, violet accent, dark rail, amber safety signal, eyebrow banner. Every description is an approximation.

I now point at a shipped .html file instead. The style is not a paragraph about the style; it is the artifact. Roughly forty lines of guidance collapsed into one @ mention, and the fidelity went up, not down.

Amazon

AI context management software

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

The part that does not travel

Here is where I part company with the enthusiasm, and it matters for anyone building the way I build.

This is frontier-model advice.

I target 70 to 90 percent local inference. The DojoClaw fleet runs Qwen3 235B at six-bit on the M3 Ultra and a 32B MLX build as the daily driver. The guardrails Anthropic just deleted are precisely the guardrails a 32-billion-parameter open-weight model still needs. Unhobbling is a capability dividend, and it does not pay out evenly across your inference stack.

The practical consequence is that I now maintain two context regimes, not one. Lean context for hosted frontier work, structured context with explicit rules for local runs. Whether the shared portion can stay shared is an open question in my setup, and the post does not price this cost because Anthropic does not have it.

The second concern is governance rather than tokens. When you move behaviour from your written rules into the model's judgement, your effective policy becomes whatever the current model thinks is appropriate. That is fine — until the model changes. For a publisher with a house style across hundreds of properties, "the model has good taste now" is a dependency, not a solution. Rules are also documentation for humans; they survive model upgrades, and they can be diffed.

The steelman for keeping more than the post suggests is straightforward: consistency at scale is not the same problem as correctness on a single task. A rule that a strong model would have followed 90 percent of the time anyway is still worth writing down if the other 10 percent ships to production under my byline.

Anthropic's answer, implicitly, is to test it — delete the rule, run your evals, and see whether the score holds. That is the right method. It also assumes you have evals, which most publishers and most small builders do not.

Amazon

AI model prompt auditing tools

As an affiliate, we earn on qualifying purchases.

As an affiliate, we earn on qualifying purchases.

What I am doing this week

The sequence, in the order that works:

  1. Run /doctor across the active repositories for a first pass.
  2. Grep every CLAUDE.md and skill file for NEVER, ALWAYS, DO NOT, and all-caps prohibitions. Apply the one test line by line.
  3. Sort survivors into keep (non-derivable: legal, deployment, client-confidentiality, hard-won gotchas) and move (real but situational — extract to a skill, leave a pointer).
  4. Replace every prose description of a visual or structural standard with the shipped artifact itself.
  5. Keep a separate, more explicit context file for local-model runs, and stop pretending one set of instructions serves both.

I expect to delete more than half of what is currently loaded on every request. My earlier guidance was not mistaken — it was calibrated to models that needed it. That distinction is worth making out loud, because the alternative is quietly rewriting your own history every time the frontier moves.

AI DISPATCH · INSIGHTS Claude Code reference · August 2026
One command, explained
/doctor
The setup checkup that also puts your CLAUDE.md on a diet

Most people remember /doctor as the thing you run when Claude Code will not start. It is now considerably more than that: a bundled skill that audits your installation, your context cost, and your always-loaded memory files — then asks permission before it touches anything.

Bundled skill
Not hardcoded CLI logic
/checkup
Alias for the same command
v2.1.206+
Needed for the CLAUDE.md trim check
Confirm first
Reports findings before any change
01
What it actually inspects

Four areas, only one of which is the classic "is my install broken" question.

A Installation health
  • Duplicate or leftover installs
  • PATH problems
  • Settings files that will not parse
  • Whether a newer version exists on your release channel
B Context cost
  • Unused skills weighed against what they cost to load
  • MCP servers you connected once and forgot
  • Plugins earning nothing
  • Hooks that run slowly
C Memory files
  • Deduplicates your local CLAUDE.md against the checked-in one
  • Trims checked-in CLAUDE.md files
  • Migrates surviving guidance into skills and nested files
D Permissions friction
  • Offers to make auto mode your default
  • Offers to pre-approve read-only commands you keep denying
  • Both are offers, not defaults applied silently
02
The CLAUDE.md trim, in one rule

The command cuts what Claude could work out from the codebase itself, and keeps what the codebase cannot tell it. This is the same principle behind Anthropic's July 2026 context-engineering guidance, shipped as a command.

Kept
Not derivable from the repository.
  • Pitfalls and gotchas
  • Rationale behind decisions
  • Conventions that differ from tool defaults
Cut
Readable straight from the files.
  • Directory layouts
  • Dependency lists
  • Architecture overviews
Then it moves what survives. Always-loaded guidance that still earns its place gets migrated into skills and nested CLAUDE.md files that load on demand — so it reaches Claude when the work calls for it, rather than on every single request.
03
How a run goes

Nothing is rewritten behind your back. Step four is a gate, not a formality.

01
Invoke
Type /doctor at the start of a message
02
Scan
Install, skills, MCPs, plugins, hooks, memory files
03
Report
Findings listed before anything is touched
04
Confirm
You approve each change explicitly
05
Apply
Fixes, trims, and migrations are written
04
Two ways to run it

The in-session skill and the terminal command are not the same thing.

/doctor
Inside a session

The full checkup. Diagnoses and can fix: installation issues, context bloat, CLAUDE.md dedupe and trim, permission pre-approvals. This is the one you want when you are rightsizing a repository.

claude doctor
From the terminal

Prints read-only installation diagnostics without starting a session. Useful on a new machine or in CI, when you want the report and nothing else touched.

05
What it is not

Four neighbours that get confused with it, and what each one is actually for.

/context
Visualises what is filling the window right now, as a grid.
/memory
Edits CLAUDE.md by hand and manages auto-memory entries.
/debug
Diagnoses runtime issues from the session debug log.
/init
Creates a starter CLAUDE.md. /doctor is what you run later.
A checkup for the install, and a diet for the context.
Run it before you write another rule, not after.

The rules that survive this cut are the ones that encode something the world taught me and the repository cannot show. Everything else was a splint on a leg that healed.


Sources: Thariq Shihipar, "The new rules of context engineering for Claude 5 generation models," Claude by Anthropic blog, 24 July 2026; Anthropic Claude Code documentation; contemporaneous coverage in Techstrong.ai and Developers Digest, late July 2026. Portfolio details and conventions are my own. Point-in-time as of 3 August 2026.

You May Also Like

Salesforce & OpenAI: Agentforce 360 and the Agentic Enterprise

What’s new: Salesforce and OpenAI have launched Agentforce 360, enabling AI agents inside…

The $725 Billion Question: Hyperscaler Capex Q1 2026 and What the Earnings Don’t Answer

By Thorsten Meyer — May 2026 April 29, 2026. The Big Four…

AI and the Developing World: How Emerging Economies Are Adopting AI

With emerging economies adopting AI mainly for efficiency gains amid challenges, uncover how they’re shaping the future of digital transformation.

GPT-5 Unveiled: A New Standard in AI Intelligence, Reasoning & Capability

A Unified, Smarter System OpenAI introduces GPT‑5, its most advanced model yet,…