Claude Code Daily Briefing - 2026-06-04

Release Summary

VersionDateKey Changes
v2.1.1626/3claude agents --json gains waitingFor monitoring, WebFetch permission-precedence + Windows path-rule fixes, MCP sub-1000ms timeout handling changed, many stability fixes
v2.1.1616/2OTEL custom labels, parallel tool-call isolation, claude mcp secret masking
v2.1.1606/2dynamic-workflow trigger workflowultracode, write-prompts for shell startup & build-config files, grep satisfies read-before-edit

v2.1.162 shipped yesterday (6/3). It’s a stability and hardening release rather than a feature drop — the substance is one small improvement to claude agents observability plus a pair of permission-rule correctness fixes. (We covered v2.1.160 and v2.1.161 in detail yesterday.)

Full release notes


New Features & Practical Usage

claude agents observability — waitingFor (v2.1.162)

v2.1.162 is mostly bug fixes and stabilization. The single change most useful for parallel, unattended agent fleets is a new waitingFor field in claude agents --json output: you can now tell, programmatically, exactly what a waiting session is blocked on (e.g. a permission prompt).

# See at a glance which fanned-out agents are stuck, and why
claude agents --json | jq '.[] | {name, waitingFor}'

Instead of attaching to each session by hand to answer “why is this stalled?”, a CI job or dashboard can now distinguish a permission-prompt wait from any other blocker. The same release also fixes status text getting clipped at 60–120 columns on wide terminals and long session names truncating at 40 columns, so the agents view is generally more readable.

GitHub v2.1.162


Developer Workflow Tips

Isolate file-writing subagents in throwaway worktrees — isolation: worktree

When you fan subagents out to edit files in parallel, their writes can collide in a single working tree. Add isolation: worktree to a custom subagent’s frontmatter (in .claude/agents/) and each invocation runs in a temporary git worktree branched from your default branch; the worktree is auto-removed if the subagent makes no changes. (This path got steadier in v2.1.161, which fixed worktree-isolated agents being unable to edit their own worktree files.)

A worktree is a fresh checkout, so untracked files like .env are absent. Drop a .worktreeinclude file (.gitignore syntax) at the project root and Claude Code will copy matching gitignored files into the worktree automatically.

# frontmatter of .claude/agents/feature-dev.md
---
name: feature-dev
description: Use for parallel implementation work
isolation: worktree
---
# .worktreeinclude  (project root)
.env
.env.local
config/secrets.json

To isolate a whole session, you can also start with claude --worktree feature-auth (alias -w).

Claude Code Docs — Worktrees

Pin a model per subagent to control cost — model: + CLAUDE_CODE_SUBAGENT_MODEL

If a subagent definition omits model:, it defaults to inherit — so cheap exploration work can silently run on your expensive main-session model. Set model: haiku for read-only search/exploration, model: sonnet for routine coding workers, and reserve opus for orchestration and hard reasoning. The cost difference is large.

---
name: explorer
description: Read-only codebase search
tools: Read, Grep, Glob
model: haiku
---

Claude Code resolves the model in this order: CLAUDE_CODE_SUBAGENT_MODEL env var → per-invocation parameter → the subagent’s model: frontmatter → the main conversation’s model. So to force every subagent in a session down to the cheap tier regardless of its file, one env var is enough.

# Force all subagents in this session to Haiku (overrides frontmatter)
export CLAUDE_CODE_SUBAGENT_MODEL=claude-haiku-4-5-20251001

With usage-metered billing and the June 15 Programmatic Usage Credits change looming, encoding “which model goes where” into your agent definitions is basic cost governance.

Claude Code Docs — Subagents


Security & Limitations

v2.1.162 — permission-rule correctness fixes (WebFetch precedence, Windows paths) (6/3)

v2.1.162 fixes two security-relevant bugs where permission rules weren’t being applied as intended.

If you gate access through permission rules, it’s worth upgrading to v2.1.162 and re-confirming your rules actually apply.

GitHub v2.1.162

June 3 follow-up incidents — Opus 4.7 errors, partial Claude Code degradation (6/3)

The day after the June 2 multi-service outage, Anthropic’s status page logged two short incidents on June 3. Claude Opus 4.7 saw “elevated errors” (investigated ~07:10 UTC, resolved 07:38 UTC), and separately some Claude Code services were degraded — affecting security reviews, code reviews, routines, and some Claude Code web sessions (resolved 07:36 UTC). Both were resolved within roughly 30 minutes and are distinct from the June 2 capacity-constraint outage.

Claude Status


Ecosystem & Plugins

Harness lands an MCP server in the official Claude Connectors Directory (6/1)

CI/CD platform Harness added its MCP server to Anthropic’s official Claude Connectors Directory, giving Claude structured access to pipelines, deployments and approvals, failure diagnosis, security posture (SBOMs, vulnerability scans), chaos experiments, and cloud cost anomalies. The distinguishing claim is that it exposes Harness’s “Software Delivery Knowledge Graph” (typed entities with declared relationships) rather than a raw API — reportedly cutting complex cross-domain queries from 5+ sequential LLM calls down to 2–3 structured ones. Everything runs through existing RBAC and audit logging.

Harness blog

Anthropic adds a Services Track and Partner Hub to the Claude Partner Network (6/3)

Anthropic extended its Claude Partner Network with two structures. The Services Track is a three-tier system (Select / Preferred / Global Premier) graded on actual Claude deployments and certifications, and the Claude Partner Hub is a directory/dashboard where partners track their tier (updated daily) and customers find qualified firms — it integrates with Claude via an MCP connector. For context, the $100M Partner Network launched last March has now drawn 40,000+ applications and 10,000+ certified consultants.

Anthropic Newsroom


Community News


Minor Changes



Interesting Projects & Tools