Claude Code Daily Briefing - 2026-05-15
Release Summary
| Version | Date | Key Changes |
|---|---|---|
| v2.1.142 | 5/14 | Fast Mode defaults to Opus 4.7, expanded claude agents flags, SKILL.md plugin recognition, daemon crash-loop fix |
| v2.1.141 | 5/13 | Hook terminalSequence, claude agents --cwd, Rewind “Summarize up to here” |
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.
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.
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.
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
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.
| Plan | Monthly Credits |
|---|---|
| Pro ($20/mo) | $20 |
| Max 5x | $100 |
| Max 20x | $200 |
Key points:
- Unused credits do not roll over
- After exhaustion, API rates apply for additional usage
- Per-user allocation only, no team sharing
Developers running heavy automation scripts or Agent SDK workflows should audit their current usage and consider plan upgrades if needed.
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.
Community News
-
Claude for Small Business Launch — Anthropic Targets SMB Market: Moving beyond enterprise, Anthropic now offers direct integrations with tools SMBs actually use (QuickBooks, PayPal, HubSpot). The 10-city US roadshow adds an offline dimension to the push. Anthropic
-
“The Emacsification of Software”: A developer built a native macOS Markdown viewer (MDV.app) with Claude in hours, illustrating how AI agents enable “hyper-specific personal tools” instead of generic apps. The trend away from bloated Electron apps toward AI-crafted native UIs is accelerating. Source
-
Anthropic Signs $1.8B Akamai Computing Deal: Following the SpaceX Colossus 1 deal (300MW+), Anthropic secured an additional $1.8B computing agreement with Akamai to meet surging Claude demand. Bloomberg
Minor Changes
- Background session worktree fix: Fixed background sessions not recognizing pre-existing git worktrees (v2.1.142)
- Windows network drive deadlock: Fixed
claude agentsdeadlocking with network-drive working directories (v2.1.142) - SKILL.md standalone plugins: Root-level
SKILL.mdwithoutskills/directory now recognized as a skill plugin (v2.1.142) - Opus 4.7 Fast Mode API:
speed: "fast"parameter available on API for 2.5x faster output (research preview)
Recommended Reads
-
“The Next Biggest Moat in AI is ‘Organization’”: As AI products and technology rapidly converge, the organizational structure itself becomes the strongest competitive advantage. The key insight: great companies are “organizational inventions that let a specific type of talent finally express themselves.” Identity, not compensation, attracts talent. 23 points, 2 comments. Source
-
“Lessons from Inside Chinese AI Labs”: A report from visiting major Chinese AI labs reveals cultural differences in the US-China AI ecosystem. Chinese researchers “optimize for final model quality over individual reputation,” with active students as core contributors. Notably, most Chinese developers are using Claude. 20 points, 6 comments. Interconnects
-
“The Emacsification of Software”: AI agents make it possible to build personal native apps in hours, pushing software toward Emacs-style customization. The author built a macOS native Markdown viewer with Claude, demonstrating how “hyper-specific tools for each person’s friction points” are proliferating. Source
Interesting Projects & Tools
-
legalQ — Natural language chatbot for Korean laws and precedents: A RAG-based legal chatbot built on the legalize-kr dataset. It bridges the gap between keyword-search legal databases and general LLMs by citing relevant statutes and case law. Built with FastAPI + React + OpenRouter. 4 points. legalQ
-
Fairydust — Auto-record sponsorship notifications to GitHub repos: When you receive a sponsorship on the Fairy platform, it automatically logs the sponsor’s name, amount, and message to your GitHub README. A simple way for open-source developers to visibly acknowledge supporters. Fairydust