Claude Code Daily Briefing - 2026-05-17

Release Summary

VersionDateKey Changes
v2.1.1435/15Plugin dependency management, marketplace token cost display, worktree.bgIsolation: "none", PowerShell Bypass

(No new release as of 5/17 — latest version is v2.1.143 from 5/15.)

Full Release Notes


New Features & Practical Usage

PwC Deploys Claude Code/Cowork to 30,000 Staff — 70% Delivery Time Reduction (5/14)

PwC and Anthropic have expanded their strategic alliance. PwC will roll out Claude Code and Cowork to 30,000 professionals, starting with U.S. teams and scaling toward a global workforce of hundreds of thousands.

Key results: Engineering teams using Claude Code are shipping production software for major companies in weeks, not quarters, with delivery times cut by up to 70% (insurance underwriting went from 10 weeks to 10 days).

Three focus areas:

A joint Center of Excellence and a 30,000-person certification program have been established.

Anthropic | PwC

Anthropic Blog: “How Claude Code Works in Large Codebases” (5/16)

Anthropic published an official guide on using Claude Code effectively in large codebases. The core message: performance depends more on the Harness (infrastructure layer) than on the model itself.

The 5-layer Harness:

  1. CLAUDE.md: Hierarchical context — root-level big-picture guidance, subdirectory-specific local rules
  2. Hooks: Scripts that enforce consistent behavior deterministically
  3. Skills: On-demand specialized expertise without bloating every session
  4. Plugins: Packaged configurations deployable organization-wide
  5. MCP servers: Connections to internal tools and APIs

Practical recommendations: Start exploration from subdirectories to narrow scope, review settings every 3–6 months as models improve, and assign a DRI (Directly Responsible Individual) or “agent manager” to own the Claude Code ecosystem.

Claude Blog | GeekNews


Developer Workflow Tips

The Harness Architecture — “Infrastructure Matters More Than the Model”

Anthropic’s official blog emphasizes that Claude Code’s performance in large codebases is determined by the surrounding infrastructure (Harness), not just the model. Here’s how to apply it:

Hierarchical CLAUDE.md structure:

project-root/
├── CLAUDE.md              # Overall architecture, test strategy, coding style
├── src/
│   └── CLAUDE.md          # src-specific rules
├── packages/auth/
│   └── CLAUDE.md          # auth module-specific rules

Root files contain the big picture; subdirectories hold local rules. Claude automatically loads the CLAUDE.md for the working directory, reducing unnecessary context consumption.

Assign a DRI (Agent Manager): Successful large-scale deployments consistently assign a dedicated owner for the Claude Code ecosystem (CLAUDE.md, Hooks, Plugins, MCP). When settings are neglected, performance stagnates even as the underlying model improves.

Claude Blog

Tests Are Your External Source of Truth

Without tests, Claude verifies its own work using its own judgment — which degrades as context fills up. Tests serve as an external checkpoint that stays accurate throughout the entire session. Each red-to-green cycle gives Claude unambiguous feedback.

Anthropic’s internal testing found that unguided attempts succeed about 33% of the time. Combining upfront planning with test-based verification significantly improves outcomes.

Claude Code Best Practices


Ecosystem & Plugins

Microsoft Cancels Claude Code Licenses — Shifts Developers to Copilot CLI (5/14~)

Microsoft is canceling thousands of employee Claude Code licenses and pushing developers toward GitHub Copilot CLI.

Background: Microsoft opened Claude Code access to developers, PMs, and designers in December 2025. Over six months, Claude Code’s internal popularity surged — undercutting Copilot CLI adoption. The Experiences + Devices division (Windows, Microsoft 365, Outlook, Teams, Surface) is expected to stop using Claude Code by June 30.

Motivations: Microsoft’s fiscal year ends June 30, making license cuts a cost-reduction move. There’s also a strategic push to drive internal adoption of their own Copilot CLI product.

Developer reaction: Reports indicate internal dissatisfaction with the forced transition.

Windows Central | Yahoo Tech

Code with Claude London (5/19) D-2 + Extended (5/20) D-3

The London event is 2 days away. In-person applications are closed; livestream registration is open. The May 20 Extended session targets indie developers and early-stage startups. Tokyo (6/10) and Tokyo Extended (6/11) registrations are also open.

Code with Claude London | London Extended


Community News


Minor Changes



Interesting Projects & Tools