Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.228 Home All releases olderv2.1.227 v2.1.229newer
Claude Code v2.1.228

Subagent messages no longer count as turns in tee'd stream-json output

You'll notice
Useful3 Signal3
SDK

Subagent chatter in the JSON output stream no longer counts as a new turn.

What

In the JSON event stream written to stdout for external observers, user and assistant events produced by a subagent are now marked as such. The supervisor that tracks turn boundaries skips marked events, so a subagent talking no longer opens a follow-up turn or resets idle and activity tracking.

Details
  • The marker is applied to events that carry a parent tool-use id, meaning they came from a tool-spawned subagent rather than the main conversation.
  • Both the code that adds the marker and the guard that ignores it are new.
Evidence

from_subagent

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.228 →