123 wires and counting

$ follow Anthropic

Keep up with Anthropic in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-07-06
stories 18

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

CLAUDE AGENT SDK DROPS THREE CRITICAL FIXES FOR ZOMBIE PROCESSES AND SILENT DATA LOSS

By RepoJournal · Filed · About Anthropic · Composed from the cited sources · methodology

The Python SDK shipped fixes for a cancellation bug that leaves subprocess children running after parent shutdown, a whitespace-stripping bug that corrupts JSON inside NDJSON payloads over 64KiB, and a security warning for shadowed tool permission callbacks.

Three separate pull requests hit the claude-agent-sdk-python repo addressing production hazards that have already hit real callers [1] [2] [3]. The first shields subprocess cleanup from cancellation errors, which means killed CLI children no longer linger as zombies when the surrounding task scope times out or fails [2]. The second patches a silent data corruption bug where NDJSON lines larger than one 64KiB read chunk lose whitespace wherever a read boundary lands, including inside JSON string values [3]. The third adds warnings when can_use_tool callbacks are shadowed by allowed_tools or bypassPermissions in the permission ladder, preventing security-critical tool restrictions from silently becoming dead code [1]. All three close genuine failure modes in production agent deployments. Plugin validation continues across both knowledge-work-plugins and claude-plugins-official, with five SHA bumps landing in the official repo and three in the knowledge-work repo, all pre-validated through the plugin validation workflow [4] [5] [6] [7].

Action items

References

  1. [1] Warn when can_use_tool is shadowed by allowed_tools or bypassPermissions ↗ anthropics/claude-agent-sdk-python
  2. [2] Shield subprocess cleanup from cancellation to stop zombie CLI children ↗ anthropics/claude-agent-sdk-python
  3. [3] Fix silent whitespace loss on NDJSON lines larger than 64KiB ↗ anthropics/claude-agent-sdk-python
  4. [4] bump(wix): 61f5c5f6 → e4a3c42c ↗ anthropics/knowledge-work-plugins
  5. [5] bump(huggingface-skills): 4948baec → 79512173 ↗ anthropics/claude-plugins-official
  6. [6] bump(hyperframes): 114d3191 → e8d19b1b ↗ anthropics/claude-plugins-official
  7. [7] bump(wix): 61f5c5f6 → e4a3c42c ↗ anthropics/claude-plugins-official

Quick answers

What shipped in Anthropic on July 6, 2026?
The Python SDK shipped fixes for a cancellation bug that leaves subprocess children running after parent shutdown, a whitespace-stripping bug that corrupts JSON inside NDJSON payloads over 64KiB, and a security warning for shadowed tool permission callbacks. In total, 3 commits and 15 pull requests landed.
Who contributed to Anthropic on July 6, 2026?
2 developers shipped this update, including qing-ant and github-actions[bot].
What were the notable Anthropic updates?
Warn when can_use_tool is shadowed by allowed_tools or bypassPermissions, Shield subprocess cleanup from cancellation to stop zombie CLI children, and Fix silent whitespace loss on NDJSON lines larger than 64KiB.