Claude Code Daily Briefing - 2026-05-05

Release Summary

VersionDateKey Changes
v2.1.1285/4ZIP plugin support, /mcp tool count, EnterWorktree HEAD-based branching, vim mode fix
v2.1.1265/1Custom gateway model picker, project purge, WSL2/SSH OAuth

Full Release Notes


New Features & Practical Usage

v2.1.128 — ZIP Plugins, MCP Tool Count, EnterWorktree Fix (5/4)

Released the day before Code with Claude SF, v2.1.128 packs feature additions and 20+ bug fixes.

ZIP plugin archives for --plugin-dir: You can now pass .zip files instead of directories, making plugin distribution across teams much simpler.

/mcp tool count display: The /mcp command now shows per-server tool counts and flags servers with 0 tools. This makes it easy to diagnose MCP connection issues at a glance.

EnterWorktree local HEAD branching: Previously, creating a worktree would branch from the remote, silently dropping unpushed commits. Now it branches from local HEAD, preserving your work.

/model picker cleanup: Duplicate Opus 4.7 entries are collapsed and the current model shows as “Opus” instead of “Opus 4.7”.

# Use ZIP plugins
claude --plugin-dir ./my-plugin.zip

# Check MCP server status
# Type /mcp in session → see per-server tool count and 0-tool warnings

Other notable changes:

GitHub v2.1.128


Developer Workflow Tips

Claude Code Skills — Define Once, Reuse Everywhere

One of the most underutilized features in 2026 is the Skill system. A Skill is a saved, reusable workflow that Claude triggers automatically when the context matches. You teach Claude how to perform a task well once, refine it, then save it — Claude applies it consistently going forward.

Practical examples:

# List available skills
/skill

# Save current conversation patterns as a skill
/learner

Unlike CLAUDE.md instructions, Skills activate automatically when context matches, so you don’t have to repeat instructions every session.

Claude Code Docs | Builder.io

Debug MCP Connections with /mcp Tool Count

With v2.1.128’s improved /mcp command, you can quickly identify MCP server issues. Servers showing 0 tools likely have configuration errors or expired authentication. This is especially useful when running multiple MCP servers — a silent failure in one can cause confusing behavior.

Also note that workspace is now a reserved MCP server name. If you have an existing server named workspace, rename it to avoid it being skipped.

// settings.json — rename if using "workspace"
{
  "mcpServers": {
    "my-workspace": {
      "command": "node",
      "args": ["./mcp-server.js"]
    }
  }
}

Security & Limitations

Microsoft Edge Stores All Passwords in Plaintext in Memory (5/4)

Microsoft Edge has been found to decrypt all saved passwords at startup and keep them unencrypted in memory, regardless of whether they’re being used. This makes credentials vulnerable to memory dump attacks — any malware that can read process memory gets access to every stored password.

If you’re using Edge to store API keys or service passwords for your development workflow, consider switching to a dedicated password manager (1Password, Bitwarden, etc.). This is particularly relevant when running Claude Code with --dangerously-skip-permissions, as the Bash tool could theoretically access process memory.

GeekNews


Ecosystem & Plugins

Anthropic Launches $1.5B Joint Venture with Blackstone & Goldman Sachs (5/4)

Anthropic announced a $1.5 billion joint venture with Blackstone, Hellman & Friedman, and Goldman Sachs to accelerate enterprise AI adoption. Anthropic, Blackstone, and Hellman & Friedman are each contributing ~$300M, Goldman Sachs ~$150M, with additional backing from Apollo, General Atlantic, GIC, Leonard Green, and Sequoia Capital.

Instead of traditional consulting, the venture will embed engineers directly inside companies to redesign workflows and integrate AI into core processes. Target sectors include healthcare, financial services, manufacturing, retail, real estate, and infrastructure. Investors get preferred sales access to their portfolio companies.

Hours before, OpenAI announced a similar $10B venture “The Development Company” with TPG, Bain Capital, and 19 other investors — signaling that the enterprise AI market race is now fully underway as both companies eye IPOs.

CNBC | TechCrunch | Fortune


Community News


Minor Changes Worth Knowing



Interesting Projects & Tools