Claude Code Daily Briefing - 2026-05-13

Release Summary

VersionDateKey Changes
v2.1.1405/12Flexible subagent_type matching, /goal fix for disabled hooks, symlink settings hot-reload fix, plugin folder warnings
v2.1.1395/11Agent view, /goal command, hook args[], continueOnBlock

Full Release Notes


New Features & Practical Usage

v2.1.140 — Flexible subagent_type Matching, /goal Stability, Plugin Diagnostics (5/12)

v2.1.140 focuses on stability and usability improvements following the major feature additions in v2.1.139.

Flexible subagent_type matching: The Agent tool now accepts case- and separator-insensitive values for subagent_type. "Code Reviewer", "code-reviewer", and "code_reviewer" all resolve to the same code-reviewer agent. No more memorizing exact naming conventions in CLAUDE.md or prompts.

/goal fix for disabled hooks: /goal previously hung silently when disableAllHooks or allowManagedHooksOnly was set. It now displays a clear message instead of an indicator that never resolves.

Plugin folder warnings: When plugin.json explicitly sets a key, any default component folder (e.g., commands/) that gets silently ignored is now flagged in /doctor, claude plugin list, and /plugin. This eliminates the “why aren’t my commands loading?” debugging trap during plugin development.

Background service stability: Fixed claude --bg failing with “connection dropped mid-request” when the background service was about to idle-exit, and fixed startup failures on machines with enterprise endpoint security software.

GitHub v2.1.140


Developer Workflow Tips

Use Plan Mode as a Dedicated Research Phase

A pattern consistently emphasized across recent Claude Code best practices guides is the clear separation of research/planning from implementation. Explore the codebase and design your approach in Plan mode, then switch to implementation.

Why it works: Without Plan mode, Claude can “spend 20 minutes confidently solving the wrong problem.” Planning first catches wrong assumptions before code is written — correcting a plan is far cheaper than unwinding a half-finished feature.

When to use Plan mode:

Claude Code Best Practices | Smart WebTech

Parallel Agent Sessions + Agent View for Multi-Task Management

Combined with claude agents from v2.1.139, teams can run 4–5 parallel Claude sessions on separate git branches. The critical success factor is providing each session with a clear plan first. Parallel agents without plans produce “parallel confusion” rather than parallel progress.

# Check all session statuses from one view
claude agents

# Each session runs in an isolated worktree
# Configure worktree base ref in settings.json
{
  "worktree": {
    "baseRef": "head"
  }
}

Builder.io | GitHub


Ecosystem & Plugins

Anthropic in Talks to Raise $30B at $900B+ Valuation (5/12)

Bloomberg reported on 5/12 that Anthropic is in early talks to raise at least $30 billion in fresh financing at a valuation exceeding $900 billion.

Key context:

Bloomberg | Investing.com

Code with Claude London (5/19) D-6 + Extended (5/20) D-7

6 days until the London main event. In-person registration is closed; a livestream will be available. On 5/20, a separate Extended session targets indie developers and early-stage founders. Tokyo (6/10) and Tokyo Extended (6/11) registration is open.

Code with Claude London | London Extended


Community News


Minor Changes Worth Knowing



Interesting Projects & Tools