Claude Code Daily Briefing - 2026-05-15

Release Summary

VersionDateKey Changes
v2.1.1425/14Fast Mode defaults to Opus 4.7, expanded claude agents flags, SKILL.md plugin recognition, daemon crash-loop fix
v2.1.1415/13Hook terminalSequence, claude agents --cwd, Rewind “Summarize up to here”

Full Release Notes


New Features & Practical Usage

v2.1.142 — Fast Mode Upgrades to Opus 4.7, Agent Launch Flags Expanded (5/14)

v2.1.142 brings a significant model upgrade to Fast Mode and granular agent execution controls.

Fast Mode → Opus 4.7 Default: /fast mode now defaults to Opus 4.7 instead of Opus 4.6. Opus 4.7 shows meaningful improvements in advanced software engineering tasks, and combined with Fast Mode’s 2.5x output speed, complex refactoring and large-scale code generation feel noticeably snappier.

Expanded claude agents Flags: Fine-grained control over agent launches is now possible.

# Start agent in specific directory with custom model, permissions, MCP config
claude agents --add-dir ./subproject \
  --model opus \
  --permission-mode plan \
  --mcp-config ./custom-mcp.json \
  --plugin-dir ./my-plugins \
  --effort high

New flags: --add-dir, --settings, --mcp-config, --plugin-dir, --permission-mode, --model, --effort, --dangerously-skip-permissions

SKILL.md Plugin Recognition: Plugins with a root-level SKILL.md and no skills/ subdirectory are now automatically surfaced as a skill. This simplifies the structure for single-skill plugins.

Daemon Stability Fix: Fixed daemon not exiting cleanly after binary upgrades, which caused dispatched agents to crash-loop. Also fixed claude agents deadlocking on Windows with network-drive working directories.

GitHub v2.1.142

Claude for Small Business — 15 Workflows, 15 Skills, 8+ Connectors (5/13)

Anthropic launched Claude for Small Business, a package that connects Claude into the tools small businesses already use.

Package Contents: 15 agentic workflows (payroll planning, month-end close, invoice chasing, lead triage, contract review, campaign creation, cash-flow monitoring) + 15 reusable skills + 8+ connectors

Connectors: QuickBooks, PayPal, HubSpot, Canva, DocuSign, Google Workspace, Microsoft 365, Square, Stripe, Webflow, Slack

Control Model: Every task requires user approval of the plan before execution, or users can opt in to end-to-end autonomous operation.

Roadshow: Starting May 14 in Chicago, Anthropic is running free half-day AI workshops for 100 small business leaders per stop across 10 US cities.

Anthropic | TechCrunch


Developer Workflow Tips

Using claude agents Flags for Project-Specific Agent Presets

v2.1.142’s new flags let you manage different agent configurations per project as scripts. In a monorepo, apply different MCP configs and plugins per subproject. In CI, combine --dangerously-skip-permissions with --effort for automation pipelines.

# Register presets in package.json scripts
# "agent:frontend": "claude agents --add-dir ./apps/web --mcp-config .mcp-frontend.json --model sonnet"
# "agent:backend": "claude agents --add-dir ./apps/api --mcp-config .mcp-backend.json --model opus --effort high"

The key insight: separate MCP configs and plugins by purpose so agents don’t load unnecessary tools. This reduces context consumption and improves tool selection accuracy.

GitHub v2.1.142

Fast Mode Opus 4.7 — When to Toggle /fast On vs Off

With Fast Mode upgraded to Opus 4.7, “always-on Fast Mode” becomes a reasonable default. But it carries premium pricing, so strategy matters.

Fast Mode ideal for: Large refactoring, boilerplate generation, test writing, documentation — speed-bound tasks where depth doesn’t add much

Normal mode ideal for: Architecture design, complex bug analysis, security reviews — deep reasoning tasks

# Fast Mode with Opus 4.7 (default in v2.1.142)
/fast

# Explicit env var (for older versions)
export CLAUDE_CODE_ENABLE_OPUS_4_7_FAST_MODE=1

Claude Code Fast Mode Docs


Security & Limitations

Programmatic Usage Switching to “Monthly Credits” on June 15

Starting June 15, Claude paid plan users will have a separate monthly credit budget for programmatic usage (Agent SDK, claude -p). Previously, this shared the same quota as Claude Code and chat subscriptions.

PlanMonthly Credits
Pro ($20/mo)$20
Max 5x$100
Max 20x$200

Key points:

Developers running heavy automation scripts or Agent SDK workflows should audit their current usage and consider plan upgrades if needed.

GeekNews


Ecosystem & Plugins

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

London main event is 4 days away. In-person registration is closed; livestream will be available. The 5/20 Extended session targets indie developers and early-stage startups. Tokyo (6/10) and Tokyo Extended (6/11) are open for registration.

Code with Claude London | London Extended

Fast Mode Opus 4.7 — API Research Preview

Opus 4.7 Fast Mode is now available as a research preview on the API. Set speed: "fast" to get up to 2.5x faster output from the same model at premium pricing. In Claude Code v2.1.142, just toggle /fast.

ClaudeDevs | API Docs


Community News


Minor Changes



Interesting Projects & Tools