Claude Code Daily Briefing - 2026-05-21

Release Summary

VersionDateKey Changes
v2.1.1455/19claude agents --json, /plugin pre-install details, OTEL span improvements, mouse support
v2.1.1445/18Edit exact matching, /resume background sessions, zip/URL plugins, /model session-only

Full Release Notes


New Features & Practical Usage

v2.1.145 — claude agents —json, Plugin Pre-Install Details, OTEL Tracing (5/19)

v2.1.145 brings significant improvements to automation, observability, and plugin discovery.

claude agents --json: Outputs running Claude sessions as JSON for scripting. This enables integration with tmux-resurrect, status bars, session pickers, and custom dashboards. Essential for workflows managing multiple parallel agents.

# List running sessions as JSON
claude agents --json

# Filter for sessions awaiting input
claude agents --json | jq '.[] | select(.status == "awaiting-input")'

/plugin Pre-Install Details: The Discover and Browse screens now show a plugin’s commands, agents, skills, hooks, and MCP/LSP servers before installation. Combined with v2.1.143’s token cost estimates, you can now do a full impact assessment before committing.

OTEL Span Improvements: agent_id and parent_agent_id attributes are now included in claude_code.tool spans with improved trace parenting. In multi-agent runs, you can now trace exactly which agent invoked which tool — invaluable for debugging with Datadog, Honeycomb, or similar observability tools.

Other Changes:

GitHub v2.1.145

KPMG Signs Global Alliance with Anthropic — Claude Deployed to 276,000 Employees (5/19)

KPMG and Anthropic announced a global strategic alliance deploying Claude across KPMG’s 276,000-person workforce. They’re launching KPMG Digital Gateway Powered by Claude, enabling real-time agentic workflow construction for tax and private equity clients.

Key areas:

This is the second Big Four partnership after PwC (30,000 employees, 5/14). Enterprise Claude adoption is accelerating rapidly in the consulting sector.

Anthropic | KPMG


Developer Workflow Tips

claude agents —json — Building Multi-Session Automation

v2.1.145’s claude agents --json is more than a query command — it’s the foundation for multi-agent management automation.

Practical patterns:

  1. tmux status bar: Show awaiting-input count so you never miss a prompt
  2. Health checks: Cron job to monitor session states and alert on anomalies
  3. Team dashboards: Parse JSON output to visualize agent utilization across teams
# tmux status bar example
AWAITING=$(claude agents --json | jq '[.[] | select(.status == "awaiting-input")] | length')
echo "Claude: ${AWAITING} waiting"

GitHub v2.1.145

Plugin Pre-Install Evaluation — Know What You’re Installing

With v2.1.143’s token cost display + v2.1.144’s last-updated dates + v2.1.145’s detailed component listings, you now have complete pre-install evaluation. Checking what commands, agents, skills, hooks, and MCP/LSP servers a plugin adds prevents unexpected behavior.

This is especially critical for plugins that provide MCP servers — they can open external connections, making pre-install review essential given recent MCP security concerns like TrustFall.

Claude Code Docs


Ecosystem & Plugins

Anthropic Acquires Stainless — SDK/MCP Generation Brought In-House ($300M+, 5/18)

Anthropic acquired Stainless, the startup behind automated SDK, CLI, and MCP server generation, for over $300 million. Stainless generated official SDKs for Anthropic, OpenAI, Google, Cloudflare, and others.

Developer impact:

This is a strategic acquisition of core MCP ecosystem infrastructure that may cause short-term disruption for competitors.

TechCrunch | Anthropic

Gemini CLI Sunset June 18 → Antigravity CLI Transition (5/20)

Google is shutting down Gemini CLI on June 18, 2026 and transitioning to Antigravity CLI. Google AI Pro/Ultra and free users are affected. Gemini Code Assist Standard/Enterprise license holders continue to be supported.

Antigravity CLI features:

Notable concern: Antigravity CLI is not open source, unlike Gemini CLI. This has drawn criticism from the developer community. While this doesn’t directly affect Claude Code users, it signals a significant shift in the AI coding tool landscape.

Google Developers Blog | The Register


Community News


Minor Changes Worth Knowing



Interesting Projects & Tools