Source Intelligence
Reading a new release v2.1.251 Analysing changes · 2/5 Deeper second pass · 0/5 agents 427 findings $12.75 so far

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.0.28 Home All releases olderv2.0.27 v2.0.29newer
Claude Code v2.0.28

Agent Transcript Resumption

What: Agents can now resume from previous execution transcripts, allowing you to continue where a previous agent left off.

How to use:

# The Agent tool now accepts a 'resume' parameter
# When invoking an agent programmatically:
{
  "subagent_type": "investigator",
  "prompt": "Continue analyzing the codebase",
  "resume": "agent-abc123"  // ID of previous agent execution
}

Details:

  • New resume parameter in Agent tool input schema
  • Loads previous agent's message chain from transcript file
  • Filters messages by agent ID and reconstructs conversation history
  • Prepends previous messages to new prompt for continuity
  • Previous messages are not re-recorded to session storage
  • Evidence: New function b_2() at line 465741; resume parameter schema at line 449027-449032; resume logic at lines 449114-449130

See this entry in the whole of v2.0.28 →