Claude Code Daily Briefing - 2026-04-16
Release Summary
| Version | Date | Key Changes |
|---|---|---|
| v2.1.110 | 4/15 | /tui flicker-free fullscreen rendering, Push Notification tool, autoScrollEnabled config, /plugin tab improvements, /doctor MCP conflict warnings, --resume restores scheduled tasks, MCP hang/CPU fixes |
| v2.1.109 | 4/15 | Extended-thinking indicator with rotating progress hint |
New Features & Practical Usage
/tui — Flicker-Free Fullscreen Terminal Mode (v2.1.110)
v2.1.110 introduces the /tui command and tui setting for flicker-free fullscreen rendering. This eliminates the visual flickering that occurred during rapid output scrolling in long sessions, providing a much more stable visual experience.
# Switch to fullscreen TUI mode
/tui
# Enable by default in settings.json
# { "tui": true }
# Disable auto-scroll in fullscreen (for reviewing long output)
# { "autoScrollEnabled": false }
Ctrl+O has been simplified to toggle between normal and verbose transcript views only. A new option also lets you see Claude’s last response as commented context in your external editor. Particularly useful when reviewing large code changes or monitoring long-running agent tasks.
Push Notifications — Mobile Alerts from Claude Code (v2.1.110)
v2.1.110 adds a Push Notification tool that sends alerts to your mobile device when long-running tasks complete or require your attention.
Previously, you had to keep watching the terminal or wire up third-party notification services. Now Claude Code can push notifications directly. Combined with Routines or /loop, you can monitor automated tasks on the go without staying glued to your terminal.
Developer Workflow Tips
Claude Code + Codex Hybrid Workflow — Best of Both Worlds
A detailed comparison post on GeekNews (39 points) by a 14-year veteran Principal/Staff Engineer from a MAG7 company tested both tools extensively on a large Python/TypeScript project (~100 hours with Claude Code, ~20 hours with Codex).
Key findings:
- Claude Code (Opus 4.6): Fast and interactive, but tends to ignore instructions and leave tasks incomplete. “Speeds through implementation without sufficient forethought.”
- Codex (GPT-5.4): 3–4x slower but methodical and intentional. Rigorously follows instruction files (AGENTS.md) and performs spontaneous refactoring.
Community consensus — hybrid workflow:
Claude Code plan mode → Sonnet implementation → Codex review → repeat
Rather than going all-in on one tool, the most effective pattern is role-based division: Claude’s speed for rapid prototyping and implementation, Codex’s thoroughness for review and quality assurance.
--resume Now Restores Scheduled Tasks (v2.1.110)
In v2.1.110, --resume and --continue automatically restore unexpired scheduled tasks. Previously, resuming a session would lose any /loop or CronCreate schedules. Now your active monitoring workflows survive session restarts.
Combine with /recap to restore both “what was I working on” and “what was I watching” in a single session recovery.
Security & Limitations
Major Service Outage on April 15 — Claude.ai, API, and Claude Code Down Simultaneously
A major outage hit all Claude services on April 15, lasting approximately three hours with global impact.
Timeline:
- 10:42 AM ET: ~6,000 users reported issues (DownDetector)
- 10:53 AM ET: Anthropic acknowledged the issue
- 11:03 AM ET: First fix deployed, brief recovery
- 11:40 AM ET: Second failure — “Claude.ai and Platform are down”
- 1:42 PM ET: Full recovery confirmed
Login failures, chat interruptions, and usage limit glitches were reported. Already-logged-in Claude Code users could continue working, but new logins were broken. This is part of a recurring pattern of outages since early 2026, attributed to surging demand outpacing infrastructure scaling.
Performance Decline Controversy — Default Effort Level Quietly Reduced to “Medium”
Fortune reports that Anthropic changed Claude’s default effort level from “high” to “medium” in early March, triggering widespread user complaints about degraded quality.
User complaints:
- Increased instruction non-compliance, inappropriate shortcuts, more mistakes on complex tasks
- Shift from “research-first” (gathering context before acting) to “edit-first” (reading less context, making more errors)
- One analyst described Claude Code as having become “unusable for complex engineering tasks”
Anthropic’s response (Boris Cherny, Claude Code lead):
- Changes were documented in the changelog, responding to user feedback about excessive token consumption
- Reasoning capability wasn’t reduced, just made less visible to users
- Enterprise users will be defaulted to high effort going forward
# Immediate fix: manually set effort level
claude --effort high
The backlash threatens Anthropic’s brand as a more transparent, user-aligned company — a key differentiator as a rumored IPO approaches.
Ecosystem & Plugins
skills-cleaner — Track and Manage Claude Code Skill Usage
A new Claude Code plugin shared on GeekNews Show. It tracks active skill usage logs and provides a /profile-skills command to analyze current skill consumption patterns.
As skills accumulate, session startup token costs increase. This tool helps identify and remove unused skills to reduce token consumption — particularly valuable if you’re hitting Pro Max quota limits.
Routines Daily Limits Confirmed — Per-Plan Breakdown
The daily execution limits for Routines (announced 4/14) have been confirmed: Pro gets 5 runs/day, Max gets 15, Team and Enterprise get 25. Currently in research preview. Supports 20+ trigger types including schedule, API, and GitHub events. Routine ownership is personal and cannot be shared with teams.
Community News
-
Claude Code vs Codex — “Fast executor vs careful reviewer”: The 39-point GeekNews comparison found Claude excels at speed and interactivity while Codex wins on instruction compliance and spontaneous refactoring. The top-voted comment pattern: “Claude for implementation, Codex for review.” The debate is shifting from “which is better” to “how to combine them.” GeekNews
-
Performance decline — the “token savings vs quality” dilemma: Fortune’s deep dive reveals the effort default change isn’t just a technical adjustment but a business decision. The tension between managing infrastructure costs by reducing token consumption and meeting user quality expectations has surfaced publicly, with concerns about brand damage ahead of Anthropic’s rumored IPO. Fortune
-
Vibe coding security disaster — patient data exposed: An AI-generated patient management app exposed healthcare data without encryption. A security researcher gained full read-write access with a single curl command. The app was a single HTML file with client-side-only access controls and unauthorized data transmission to external AI services. A stark warning about deploying AI-generated code without understanding architecture and security fundamentals. GeekNews
Minor Changes Worth Knowing
Ctrl+Osimplified: Now toggles between normal and verbose transcript views only- External editor context: Option to show Claude’s last response as commented context
/pluginInstalled tab: Better organization and information display for installed plugins/doctorMCP conflict detection: Warns when multiple MCP servers share conflicting endpoints- v2.1.109 thinking hints: Rotating progress hint added to extended-thinking indicator
- MCP tool call hang fix: Resolved issue where MCP tool calls would freeze (v2.1.110)
- High CPU usage fix: Fixed excessive CPU consumption under certain conditions (v2.1.110)
- Session cleanup: Improved cleanup of stale session data (v2.1.110)
Recommended Reads
-
“Claude Code (~100hrs) vs. Codex (~20hrs) Comparison”: A hands-on comparison by a 14-year veteran engineer from a MAG7 company. Claude Code is “fast but ignores instructions,” Codex is “slow but careful and self-refactoring.” The conclusion — a hybrid workflow where each tool plays to its strengths — reframes tool selection from “either/or” to “role division.” 39 points. GeekNews
-
“Homelab 2026: The Evolution of Self-Hosting”: Running a complete media/AI/photo/monitoring stack on a GMKTec NUC with Cloudflare Tunnel and Ansible for €7/month. The three principles — infrastructure as code, reproducibility, and usability — plus the NAS-free Syncthing sync pattern are particularly noteworthy. A practical guide to vendor independence and cost efficiency. 45 points. GeekNews
-
“Security Disaster of a Vibe-Coded Patient Management App”: A real-world incident where an AI-generated healthcare app exposed patient data without encryption. A single HTML file, client-side access controls, and unauthorized external AI data transmission — a triple failure that starkly demonstrates the danger of AI coding without architectural understanding. A cautionary tale for all AI coding tool users. GeekNews
Interesting Projects & Tools
-
mux — tmux Session Manager for AI CLIs: A TUI tool for managing multiple AI CLI tools (Claude Code, Codex, Aider, Gemini) in tmux, with live session preview before switching. Built with Go + Bubble Tea, it auto-detects AI CLI sessions and displays Git branch/worktree info. Install via
brew install lunemis/tap/mux. Essential for developers running parallel AI sessions. 14 points. GitHub -
HTTPFlow — Visual Node Graph API Testing from .http Files: Converts .http files into interactive node graphs, combining Postman’s testing convenience with .http file version control benefits. Features bidirectional import/export, automatic variable chaining between requests, 10 assertion operators, and environment profiles (dev/staging/prod). Makes API testing accessible to non-developers (QA, PM). HTTPFlow