CLAUDE LABJP
SUNSET — The legacy Workbench retires today, August 17: saved prompts, prompt versions, and evals become inaccessible after that, so exporting is a today-or-never jobAPI — The experimental prompt tool endpoints generate_prompt, improve_prompt, and templatize_prompt retire the same day and will return errors, so any script calling them needs switching over todayCONSOLE — The replacement Workbench is stateless: nothing is stored on Anthropic's servers, your draft stays in the browser, and any request can be exported as codeOSS — Claude for Open Source now grants six months of Claude Max 20x to qualifying maintainers, capped at 10,000 people, individual only, with no API credits and no auto-renewalQUOTA — The 50 percent weekly usage boost for Claude Code subscribers runs through August 19, two days outSELF-HOSTED — Self-hosted environments for Claude Code are in public beta, letting Team and Enterprise plans run sessions on their own infrastructure with internal network access and custom toolingSUNSET — The legacy Workbench retires today, August 17: saved prompts, prompt versions, and evals become inaccessible after that, so exporting is a today-or-never jobAPI — The experimental prompt tool endpoints generate_prompt, improve_prompt, and templatize_prompt retire the same day and will return errors, so any script calling them needs switching over todayCONSOLE — The replacement Workbench is stateless: nothing is stored on Anthropic's servers, your draft stays in the browser, and any request can be exported as codeOSS — Claude for Open Source now grants six months of Claude Max 20x to qualifying maintainers, capped at 10,000 people, individual only, with no API credits and no auto-renewalQUOTA — The 50 percent weekly usage boost for Claude Code subscribers runs through August 19, two days outSELF-HOSTED — Self-hosted environments for Claude Code are in public beta, letting Team and Enterprise plans run sessions on their own infrastructure with internal network access and custom tooling
Articles/Claude Code
Claude Code/2026-08-17Advanced

Now that forking is the default, review agents are the ones I still call by name

Subagent forking became the default, so delegated work now inherits the parent conversation. Work can inherit context. Judgment cannot. Here is how I declare that boundary in the repository and catch it drifting.

Claude Code222subagents9context design2code review4indie development16

Premium Article

I was splitting up my pre-release checks when the review agent's replies got noticeably shorter.

The same agent that used to push back with "this claim has no supporting evidence" came back with "as already confirmed above, no issues found." It took me a while to realize the pushback had not weakened. The agent was no longer in a position to push back at all.

The cause was not my prompt. The default for delegation had changed underneath me.

The short version: work can inherit context, judgment cannot

Handing a subagent the parent conversation saves you from re-explaining everything. It also saves the agent from re-reading files the parent already read. For pure execution work, that is a straightforward win.

But review, re-verification, and audit work all ask the same question: is the conclusion the parent reached actually correct? The moment that agent inherits the parent conversation, it stops being a third party. It becomes a participant who arrived at the conclusion alongside you.

So the line gets drawn by role, not by capability.

What you delegateParent contextWhy
Enumeration and collection (asset inventory, string diffing)InheritIndependence of the conclusion is irrelevant. Re-explaining the premise is pure overhead
Procedural execution (build settings, version consistency)InheritLittle judgment involved, and more context means fewer round trips
Review and critiqueDo not inheritKnowing the parent's reasoning means only ever reading from inside that reasoning
Pass or fail re-verificationDo not inherit"It was reported as passing" hands over the answer before the check begins

What changed on August 14 was where unnamed delegation lands

In Claude Code 2.1.232, subagent forking became enabled by default. A subagent with subagent_type: "fork" inherits the parent session's full conversation and its prompt cache. In interactive sessions, non-teammate agent spawns now run in the background by default.

The part that is easy to miss is when forking actually fires. It fires when you delegate without specifying subagent_type. A call that names a subagent explicitly still starts from an empty context. As the subagents documentation puts it, a named subagent does not see your conversation history or the files Claude already read.

So the intuition "the default changed, therefore all my agents now inherit" is backwards. What changed was the behavior of delegation where you never named anyone — the "just take a quick look at this" kind.

That is exactly how my review agent ended up rubber-stamping. The definition file was sitting right there in .claude/agents/. My actual calls were skipping it. Writing the definition had felt like finishing the job, and I never checked whether the call site was routing through it.

You can declare the direction explicitly:

SettingEffect
CLAUDE_CODE_FORK_SUBAGENT=1Enables forking in non-interactive runs and the Agent SDK as well
CLAUDE_CODE_FORK_SUBAGENT=0Disables forking in every kind of session
Deny Agent(fork)Keeps forking available, but stops unnamed delegation from falling into it

The third row is the one I reach for most.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
You will be able to stop a review or verification agent from quietly turning into a rubber stamp, before it costs you a bad release
You will be able to sort your own agent definitions into work that should inherit context and judgment that must not
You will be able to tell which setups actually get cheaper from forking and which barely do, so you know whether turning the default off is worth it
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Claude Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Claude Code2026-04-28
Read Your Own Code as Someone Else's: Coaxing Tougher Reviews from Claude Code
When you review code you just wrote, the rough edges become invisible. Here's how I summon Claude Code as a mid-career engineer reading someone else's code, plus the prompts I actually use in production.
Claude Code2026-08-16
Tracking Multi-Step Work in Claude Code Now That the Todo Tools Are Off by Default
Since Claude Code v2.1.233, TodoWrite and the Task tools are left out on the newer models. Here are the three branches to check before you set the opt-in variable, the PostToolUse ledger I put in their place, and the measured point where that ledger quietly corrupts under parallel agents.
Claude Code2026-08-10
The Same rm -rf Was Recoverable in Ten Places and Unrecoverable in Five — Measuring Reversibility Before Auto Mode Becomes the Default
Auto mode becomes the default on Pro, Max and Team from August 14. It stops on operations judged irreversible, destructive, or outward-facing — but reversibility turned out to be a property of state, not of commands. Here is the probe and the measurements.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →