Claude Code Digest โ 2026-03-17 04:40:17
Version updates
Expanded output ceilings unlock single-shot refactoring Anthropic increased the default output token limit for Claude Opus 4.6 to 64k and pushed the absolute ceiling for both Opus 4.6 and Sonnet 4.6 to 128k tokens. This massive limit changes how you prompt. Previously, developers manually chunked extensive architectural migrations to avoid truncation. Now, you can command Claude Code to translate complex legacy modules or generate extensive end-to-end test suites in one unbroken pass. Anthropic optimized their backend inference to sustain massive generations, answering direct user frustration over interrupted scaffolding workflows.
Granular filesystem controls protect context limits
Version 2.1.77 introduces the allowRead sandbox setting, explicitly punching read-access holes through denyRead directories. This update satisfies strict security requirements for enterprise teams. You can now lock down the underlying codebase, whitelisting only the specific API contracts, schemas, or libraries the agent requires. Granular sandboxing prevents accidental credential exfiltration. It also strictly curtails context window pollution, ensuring the model focuses exclusively on relevant logic.
Targeted clipboard extraction speeds up UX
The /copy command now accepts an optional session index. Developers waste time scrolling back through terminal buffers to highlight specific output. You can now yank exact code blocks or historical responses straight from the session backlog into your clipboard.
What the docs reveal
Recent changes to docs/plugin-marketplaces.md outline a strategic shift in how Claude Code handles external tools. Anthropic added support for git-subdir, npm, and pip installation sources.
Sparse cloning accelerates monorepo initialization
The new git-subdir source type brings sparse cloning to git repositories. Modern corporate engineering happens inside monorepos. Previously, pulling a custom Claude Code tool required downloading gigabytes of repository data just to extract a lightweight script. Sparse cloning downloads only the required subdirectory. This eliminates network bottlenecks and dramatically accelerates agent initialization.
Standard package ecosystems replace bespoke registries
By officially supporting npm and pip, Anthropic abandons the need for a proprietary Claude Code plugin registry. They delegate tool distribution to mature infrastructure. You can now firmly version-lock plugins using standard package manifests. Crucially, this drives frictionless enterprise adoption. Engineering teams can securely distribute proprietary internal plugins across their organization using private NPM or PyPI servers behind corporate firewalls.