Issue #1
5 min read

Claude Opus 4.6 now in Claude Code with agent teams, auto memory

Claude Opus 4.6 is now available in Claude Code, bringing experimental agent teams, automatic memory, and fast mode support, alongside expanded hook events and PDF page-range reading. Coverage this week spans Goldman Sachs deploying Claude-powered agents, Apple adding Claude to Xcode, and a reported $20 billion Anthropic funding round.

The Week Anthropic Tanked the Market and Pulled Ahead of Its Rivals Wall Street Journal

Highlight

Claude Opus 4.6 Arrives With Agent Teams and Automatic Memory

Opus 4.6 is now available in Claude Code, bringing two significant new capabilities alongside it. You can enable experimental agent teams -- where multiple Claude instances collaborate in parallel -- by setting CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1, though be aware this is token-intensive. Claude also now automatically records and recalls memories as it works, reducing the need to re-explain context across sessions.


Worth Knowing

Fast Mode Now Supported on Opus 4.6

You can now use fast mode with Opus 4.6, bringing lower-latency responses to the most capable model. A fix also landed to ensure /fast becomes available immediately after enabling /extra-usage, rather than requiring a restart.

Multi-Agent Workflows Gain New Hook Events and Memory Scoping

If you're building with agent teams, three additions expand what you can do: TeammateIdle and TaskCompleted hook events let you react to agent lifecycle changes, Task(agent_type) syntax in frontmatter lets you restrict which sub-agents a given agent can spawn, and the new memory frontmatter field gives agents persistent memory scoped to user, project, or local.

Session Picker Now Shows Git Branch and Supports Remote Resume

Your session picker now displays the git branch and message count for each session, and you can search by branch name to find the right context quickly. OAuth users can also browse and resume sessions directly from claude.ai.

PDF Handling Upgraded With Page Ranges and Lightweight References

You can now read specific page ranges from PDFs using the pages parameter in the Read tool (e.g., pages: "1-5"), which helps avoid hitting size limits on large documents. PDFs over 10 pages now return a lightweight reference when @ mentioned rather than being dumped into context wholesale.

MCP OAuth Credentials and New Debug Command Added

You can now pass --client-id and --client-secret to claude mcp add for MCP servers like Slack that don't support Dynamic Client Registration. A new /debug command also lets Claude help you diagnose issues with the current session directly.


Under the Hood

Sandbox Permission Bypass Fixed, Along With Session and API Bugs

A security fix closes a gap where commands excluded from sandboxing via sandbox.excludedCommands or dangerouslyDisableSandbox could bypass the Bash ask permission rule when autoAllowBashIfSandboxed was enabled. Several other fixes landed too: PDF size errors no longer permanently lock sessions, temperatureOverride is now respected in the streaming path, and the prompt cache now correctly invalidates when tool schemas change.

68% Memory Reduction for Users With Many Sessions

If you use --resume frequently or have accumulated many past sessions, memory usage is down 68% thanks to a shift to lightweight stat-based loading with progressive enrichment instead of loading the full session index upfront.


From Anthropic


In the News

With Opus 4.6, agent teams, and automatic memory all landing in the same week, there's a lot to explore -- the engineering post on building a C compiler with parallel Claudes is a good place to start if you want to understand what multi-agent workflows look like in practice.