Claude docs changes for February 7th, 2026 [diff]

Executive Summary

  • New version 2.1.34: Fixed sandbox bypass bug and crash when agent teams setting changed between renders
  • New TeammateIdle and TaskCompleted hook events added for multi-agent workflows across all hooks documentation
  • Seven new individual SDK documentation pages published for C#, Go, Java, PHP, Python, Ruby, and TypeScript
  • Checkpointing expanded with new 'Summarize from here' option for partial conversation summarization

New Claude Code versions

2.1.34

Major bug fixes

  • Fixed a crash when agent teams setting changed between renders
  • Fixed a bug where commands excluded from sandboxing could bypass the Bash ask permission rule when autoAllowBashIfSandboxed was enabled

Claude Code changes

Changed documents

Agent Teams [Source]

  • Added section on enforcing quality gates with hooks using TeammateIdle and TaskCompleted hooks. [lines 198-202] [Source]

Amazon Bedrock [Source]

  • Removed the output token configuration section that recommended specific CLAUDE_CODE_MAX_OUTPUT_TOKENS and MAX_THINKING_TOKENS values for Bedrock. [removed lines 174-190]

Best Practices [Source]

  • Updated rewind command description to mention the new summarize feature. [line 387] [Source]
  • Added information about using /rewind with summarize to compact only part of the conversation. [lines 403-404] [Source]
  • Updated checkpointing section to mention the new rewind menu with summarize option. [line 436] [Source]

Checkpointing [Source]

  • Expanded rewind menu documentation to include four actions: restore code and conversation, restore conversation, restore code, and the new "Summarize from here" option. [lines 17-26] [Source]
  • Added new "Restore vs. summarize" section explaining the difference between restore operations and the summarize feature. [lines 29-39] [Source]
  • Added "Freeing context space" as a new use case for checkpoints with the summarize feature. [line 48] [Source]

CLI Reference [Source]

  • Added disallowedTools parameter to custom subagent configuration. [line 82] [Source]
  • Added support for Task(agent_type) syntax in the tools parameter. [line 81] [Source]
  • Added skills, mcpServers, and maxTurns parameters to custom subagent configuration. [lines 83-85] [Source]

Hooks Guide [Source]

  • Added TeammateIdle and TaskCompleted hook events to the lifecycle table. [lines 312-313] [Source]
  • Added bypass_permissions_disabled as a new session end reason. [line 433] [Source]
  • Updated matcher support documentation to include TeammateIdle and TaskCompleted as events that always fire. [line 437] [Source]

Hooks [Source]

  • Updated hook lifecycle diagram image URL. [line 11] [Source]
  • Added TeammateIdle and TaskCompleted to the hook events table. [lines 27-28] [Source]
  • Added TeammateIdle and TaskCompleted to the matcher support documentation. [line 176] [Source]
  • Added TeammateIdle and TaskCompleted to the exit code 2 blocking behaviors table. [lines 469-470] [Source]
  • Added TeammateIdle and TaskCompleted to the decision control patterns table. [line 516] [Source]
  • Added complete documentation for the new TeammateIdle hook event with input schema and decision control examples. [lines 1232-1277] [Source]
  • Added complete documentation for the new TaskCompleted hook event with input schema and decision control examples. [lines 1279-1335] [Source]
  • Updated prompt-based hooks to include TaskCompleted and clarified that TeammateIdle does not support prompt-based hooks. [line 1406] [Source]

How Claude Code Works [Source]

  • Updated session description to mention auto memory as a way to persist learnings across sessions. [line 62] [Source]

Interactive Mode [Source]

  • Updated Esc + Esc keybinding description to include summarize functionality. [line 26] [Source]
  • Updated /rewind command description to include summarize functionality. [line 95] [Source]

Keybindings [Source]

  • Updated MessageSelector context description to mention summarize functionality. [line 58] [Source]

MCP [Source]

Memory [Source]

  • Updated introduction to differentiate between auto memory and CLAUDE.md files. [lines 3-7] [Source]
  • Added auto memory to the memory locations table. [line 21] [Source]
  • Updated memory loading behavior description to include auto memory loading. [line 23] [Source]
  • Added comprehensive auto memory section covering what Claude remembers, storage location, how it works, and management. [lines 27-79] [Source]

Plugins Reference [Source]

  • Added TeammateIdle and TaskCompleted to the available hook events list. [lines 111-112] [Source]

Settings [Source]

  • Added CLAUDE_CODE_DISABLE_AUTO_MEMORY environment variable for controlling auto memory feature. [line 845] [Source]
  • Updated SLASH_COMMAND_TOOL_CHAR_BUDGET description to reflect dynamic scaling at 2% of context window with 16,000 character fallback. [line 897] [Source]

Skills [Source]

  • Added section on loading skills from additional directories using --add-dir. [lines 117-120] [Source]
  • Updated skills character budget documentation to reflect dynamic scaling at 2% of context window. [lines 726-727] [Source]

Sub-agents [Source]

  • Updated CLI agents documentation to list all supported frontmatter fields including new ones. [line 185] [Source]
  • Added delegate permission mode to the permission modes table. [line 298] [Source]
  • Added maxTurns and mcpServers to the frontmatter fields table. [lines 223-226] [Source]
  • Added section on restricting which subagents can be spawned using Task(agent_type) syntax. [lines 260-286] [Source]
  • Updated SubagentStop hook to support matchers for targeting specific agent types. [line 507] [Source]

API changes

New Documents

C# SDK [Source]

Comprehensive documentation for the C# SDK including installation, basic usage, streaming, async operations, Microsoft.Extensions.AI.IChatClient integration, error handling, and platform support for Claude API, Amazon Bedrock, and Google Vertex AI.

Go SDK [Source]

Comprehensive documentation for the Go SDK including installation, basic usage, streaming, context-based cancellation, functional options pattern, error handling, retry configuration, and platform support for Claude API, Amazon Bedrock, and Google Vertex AI.

Java SDK [Source]

Comprehensive documentation for the Java SDK including installation (Gradle and Maven), basic usage, streaming, async operations with CompletableFuture, builder pattern, structured outputs, error handling, retry configuration, timeouts, and platform support for Claude API, Amazon Bedrock, and Google Vertex AI.

PHP SDK [Source]

Comprehensive documentation for the PHP SDK including installation, basic usage, streaming, async operations with Amp, value objects, error handling, retry configuration, timeouts, and platform support for Claude API, Amazon Bedrock, and Google Vertex AI.

Python SDK [Source]

Comprehensive documentation for the Python SDK including installation with extras for Bedrock/Vertex/aiohttp, basic usage, async operations, streaming, Pydantic integration, structured outputs with client.messages.parse(), error handling, retry configuration, timeouts, and platform support for Claude API, Amazon Bedrock, and Google Vertex AI.

Ruby SDK [Source]

Comprehensive documentation for the Ruby SDK including installation, basic usage, streaming, Sorbet type support, structured outputs with BaseModel, error handling, retry configuration, timeouts, and platform support for Claude API, Amazon Bedrock, and Google Vertex AI.

TypeScript SDK [Source]

Comprehensive documentation for the TypeScript SDK including installation, basic usage for Node.js/Deno/Bun/browsers, streaming, async operations, Zod integration, structured outputs, error handling, retry configuration, timeouts, and platform support for Claude API, Amazon Bedrock, and Google Vertex AI.

Changed documents

Client SDKs [Source]

  • Complete restructure of the page into a landing page format with links to individual SDK pages. [entire file]
  • Added quick installation section with tabs for each SDK. [lines 23-62] [Source]
  • Added platform support table showing Claude API, Amazon Bedrock, Google Vertex AI, and Microsoft Foundry. [lines 79-85] [Source]
  • Added beta features section with example code. [lines 87-99] [Source]
  • Added requirements table for all SDKs. [lines 101-110] [Source]

Adaptive Thinking [Source]

Claude on Amazon Bedrock [Source]

  • Added SDK tabs for Python, TypeScript, Java, Go, and Boto3 installation instructions. [lines 27-42] [Source]

Claude on Vertex AI [Source]

  • Added SDK tabs for Python, TypeScript, Java, and Go installation instructions. [lines 20-32] [Source]
  • Added links to Amazon Bedrock and Microsoft Foundry documentation. [line 90] [Source]

Extended Thinking [Source]

Files [Source]

  • Updated contact email obfuscation link for rate limit increases. [line 284] [Source]

Structured Outputs [Source]

  • Updated SDK helpers section to mention Java and Ruby support in addition to Python and TypeScript. [line 110] [Source]
  • Added section on using native schema definitions with examples for Python Pydantic, TypeScript Zod, Java classes, and Ruby BaseModel. [lines 115-121] [Source]
  • Added SDK tabs for Python and Java examples in SDK-specific methods section. [lines 175-183] [Source]

Vision [Source]

  • Minor wording changes throughout for improved clarity and consistency.