Claude Code Daily Briefing - 2026-04-29
Release Summary
| Version | Date | Key Changes |
|---|---|---|
| v2.1.122 | 4/28 | ANTHROPIC_BEDROCK_SERVICE_TIER, PR URL pasting in /resume, image resize fix |
| v2.1.121 | 4/28 | MCP alwaysLoad option, plugin prune, ~2GB memory leak fix, hook output replacement |
After the v2.1.120 recall, v2.1.121 and v2.1.122 shipped back-to-back on the same day — ending the 5-day regression period and returning to a stable release cadence.
New Features & Practical Usage
v2.1.121 — MCP alwaysLoad, ~2GB Memory Leak Fix, Hook Output Replacement (4/28)
Following the v2.1.120 recall and stabilization work, v2.1.121 brings significant features and performance fixes.
MCP alwaysLoad option: Set alwaysLoad: true in your MCP server config to make all tools from that server skip tool-search deferral and remain always available. This solves the problem of frequently-used MCP tools being missed by lazy loading.
~2GB memory leak fix: Fixed unbounded memory growth when processing many images in a session, and a separate leak where /usage could consume up to ~2GB on machines with large transcript histories. Long-session users will notice meaningful performance improvements.
PostToolUse hook output replacement: hookSpecificOutput.updatedToolOutput now works for all tools, not just MCP tools. You can now replace output from Bash, Read, Grep, and other built-in tools via hooks.
// settings.json — Always load an MCP server
{
"mcpServers": {
"my-critical-server": {
"command": "npx",
"args": ["-y", "@my/mcp-server"],
"alwaysLoad": true
}
}
}
v2.1.122 — Bedrock Service Tier, /resume PR URL Support (4/28)
Released shortly after v2.1.121, v2.1.122 adds features for AWS Bedrock users.
ANTHROPIC_BEDROCK_SERVICE_TIER: Choose between default, flex, or priority tiers on Bedrock, balancing cost against latency.
PR URL pasting in /resume: Paste a PR URL into /resume to automatically find and continue the session that created it. Supports GitHub, GitLab, and Bitbucket.
GitHub v2.1.121 | GitHub v2.1.122
Developer Workflow Tips
Filter Sensitive Output with PostToolUse Hooks
The expanded updatedToolOutput capability in v2.1.121 enables practical security patterns. You can automatically mask API keys, tokens, and internal URLs from Bash tool output, or summarize excessively long outputs to save context tokens. Since this now works for all built-in tools (not just MCP), organizations can enforce security policies at the hook level across the entire tool surface.
Self-Updating Screenshots in Documentation
A system that embeds SCREENSHOT directives in Markdown comments, then captures screenshots via headless Chrome during the documentation build. It supports element, full_page, and viewport modes with options like click, wait, and crop to control UI state.
This solves the common problem of outdated screenshots after Claude Code modifies your UI. A single build command handles both screenshot capture and documentation generation, making it easy to integrate into CI/CD pipelines.
Security & Limitations
Claude.ai Major Outage — 12,000+ Users Affected, ~78 Minutes Down (4/28)
On April 28 (UTC 17:34–18:52), Claude.ai, Claude Code, and the Anthropic API simultaneously went down. Over 12,000 outage reports were logged on Downdetector, and Anthropic’s status page classified it as a “Major Outage.”
The primary symptoms were authentication errors affecting login paths, including Claude Code login. Claude Design and other connected services were also impacted. Service was restored after approximately 78 minutes — but notably, a similar major outage occurred just 8 days prior (April 20), raising concerns about infrastructure reliability.
For Claude Code users, actively using --resume and periodically saving work state during critical sessions is recommended as a mitigation strategy.
Tom’s Guide | GV Wire | Claude Status
Ecosystem & Plugins
GitHub Copilot Shifts to Usage-Based Billing — Effective June 1 (4/28)
All GitHub Copilot plans will transition to monthly AI Credits-based usage billing starting June 1, 2026. Instead of per-request pricing, billing will be based on input/output/cached token consumption. Base prices remain the same (Pro $10/mo, Pro+ $39/mo), but there’s no fallback when credits run out — features simply stop working. Code completions remain credit-free.
This could change the competitive pricing dynamics against Claude Code’s Max plan ($200/mo), as actual costs will now depend heavily on usage patterns.
Microsoft and OpenAI End Exclusivity and Revenue Sharing (4/27)
Microsoft and OpenAI have dropped their exclusive distribution and revenue-sharing agreements. OpenAI can now contract directly with competing clouds like AWS, while Microsoft stops paying revenue share on Azure resales.
This diversifies OpenAI’s distribution channels and adds complexity to the infrastructure competition between OpenAI (now multi-cloud) and Anthropic (AWS + Google Cloud).
TrafficMonitor — Claude/Codex Usage Limits in Your Windows Taskbar
A Windows TrafficMonitor plugin that displays Claude and Codex usage limits in real-time on your taskbar. Monitors 5-hour and 7-day usage windows, with all data processed locally. Useful for Max plan users who want to avoid hitting usage limits unexpectedly.
Community News
-
Anthropic hosts healthcare and cybersecurity webinars: On 4/28, “Claude Code for Healthcare: How Physicians Build with AI”; on 4/29, “Long Running Agents: How Outtake built a cyber investigator on Claude.” These sessions showcase real-world Claude Code applications in regulated industries. Anthropic Events
-
Fortune analyzes Anthropic’s engineering missteps: A detailed column traces three separate issues that simultaneously degraded Claude Code quality — the March reasoning effort default change, a 3/26 reasoning history deletion bug, and the 4/16 response 25-word cap. Fortune
-
Community developer publishes Claude Code 6-week timeline: A dated, fully-sourced timeline covering every major Claude Code event from March through April 2026. Useful reference for teams evaluating Claude Code adoption. GitHub Gist
Minor Changes
/skillssearch filter: Type-to-filter search box added to/skillsfor quick discovery in long skill listsclaude plugin prune: New command to clean up orphaned auto-installed plugin dependencies;plugin uninstall --prunecascades/branchfork fix: Fixed tool_use errors when forking from rewound timelines- Image max size fix: Images were being resized to 2576px instead of the correct 2000px maximum
/mcphidden connector display: claude.ai connectors hidden by duplicate manually-added servers now visible in/mcp- MCP server auto-retry: Up to 3 automatic retries on transient MCP server errors
- Voice mode Caps Lock fix: Voice mode keybindings now work correctly with Caps Lock enabled
Recommended Reads
-
“3 Constraints to Consider Before Building”: Proposes three pre-development constraints — “don’t build if it exceeds one page,” “separate core technology from the product,” and “one defining constraint shapes the product’s identity.” A practical framework for scoping side projects and MVPs. 30 points. Original
-
“AI Should Elevate Your Thinking, Not Replace It”: Warns that while AI handling mechanical tasks like code generation is beneficial, outsourcing problem definition and judgment weakens long-term capability. “The faster you produce plausible output, the easier it becomes to repeat without understanding.” Particularly relevant for early-career developers. 13 points. Original
Interesting Projects & Tools
-
TrafficMonitor AI Usage Plugin: Real-time Claude and Codex usage monitoring in your Windows taskbar. Tracks 5-hour and 7-day windows with fully local processing. 6 points. GeekNews | GitHub
-
Athena — AI Election Simulation with 5,000 Korean Personas: Applies LLMs to NVIDIA’s Korean persona dataset to simulate the 2026 local elections. Found systematic biases including incumbent overestimation, simplistic occupation-label matching, and massive abstention spikes with insufficient information — concluding that “LLM persona simulations cannot replace opinion polls.” 5 points. GeekNews | GitHub