Claude Code Digest — 2026-03-28 00:35:51

Version updates

Version 2.1.86 delivers subtle changes that signal Anthropic's growing focus on enterprise deployment and advanced developer workflows.

Anthropic added the X-Claude-Code-Session-Id header to all API requests. Corporate proxies and API gateways can now aggregate requests, track token costs, and enforce rate limits on a per-session basis. Previously, middleware had to parse the JSON request body to extract session context—an expensive and brittle operation at scale. By elevating the session ID to an HTTP header, Anthropic caters directly to platform engineering teams demanding strict LLM observability.

The update also adds .jj and .sl to the standard VCS directory exclusion list. Grep tools and file autocomplete will no longer descend into Jujutsu or Sapling metadata folders. Developers adopting these next-generation version control systems were likely polluting their context windows with internal state files. Anthropic clearly monitors power-user environments, actively adapting Claude Code to bleeding-edge tools before they reach mainstream adoption.

Finally, 2.1.86 patches a bug where the --resume flag failed with an unhandled exception. This restores reliable session recovery for long-running tasks.

What the docs reveal

Anthropic is solving the multi-agent UI problem. Recent documentation changes detail new window management strategies for "Agent Teams."

The documentation introduces the teammateMode setting, which accepts auto, in-process, or tmux. Watching multiple Claude subagents write concurrently to a single standard output stream yields an unreadable mess. To fix this, Anthropic now offloads agent display to terminal multiplexers. The auto setting detects your environment and automatically spins up split panes in tmux or iTerm2 for different team members. You can now physically watch specialized agents execute tasks in parallel across your screen.

The CLI reference reveals an important escape hatch: the --tmux=classic flag. While iTerm2 features a native tmux integration layer (tmux -CC), it famously overrides local window management and frustrates users with established keyboard shortcuts. The classic flag forces Claude Code to use standard tmux sessions, disabling iTerm2's native pane hijacking. Anthropic respects developer muscle memory. Rather than forcing a specific terminal paradigm, Claude Code adapts to your existing workspace.