Claude Code Daily Briefing - 2026-04-15

Release Summary

VersionDateKey Changes
v2.1.1084/15Prompt caching TTL config, /recap session context recovery, slash command discovery, /undo alias, reduced memory footprint, 16 bug fixes
v2.1.1074/14Show thinking hints sooner during long operations

Full Release Notes


New Features & Practical Usage

Prompt Caching TTL Configuration — Direct Token Cost Control (v2.1.108)

v2.1.108 lets you control prompt caching TTL (Time-To-Live) via environment variables. After the recent reduction from 1 hour to 5 minutes that worsened quota depletion for Pro Max 5x users, this puts control back in your hands.

# Enable 1-hour cache TTL (recommended for subscribers)
export ENABLE_PROMPT_CACHING_1H=1

# Force 5-minute cache TTL (fine-grained control for API key users)
export FORCE_PROMPT_CACHING_5M=1

Works across all providers: API keys, Bedrock, Vertex, and Foundry. A related bug where DISABLE_TELEMETRY caused fallback to 5-minute cache instead of 1-hour was also fixed. If you’re burning through quota, apply ENABLE_PROMPT_CACHING_1H=1 immediately.

GitHub v2.1.108

/recap — Session Context Recovery on Return (v2.1.108)

When returning to a session after time away, /recap provides a summary of your current session state. Claude analyzes the conversation history to tell you what you were working on, how far you got, and what to do next.

# Get session context summary on return
/recap

# Auto-activate away summary detection
# Configure via /config or:
export CLAUDE_CODE_ENABLE_AWAY_SUMMARY=1

If /resume reopens a session, /recap is about understanding where you are in it. Particularly useful for next-day work resumption on long-running projects.

GitHub v2.1.108

Routines — Cloud-Based Scheduled Automation (4/14)

Claude Code now supports Routines — scheduled, repeatable automations that run on Anthropic’s web infrastructure. Your local machine doesn’t need to stay online.

While /loop runs locally in your active session, Routines enable workflows like “run code review every day at 9 AM” or “check dependency updates every Friday.” Built on Managed Agents’ Session architecture, this further blurs the line between local and cloud-based agent work.

9to5Mac


Developer Workflow Tips

/recap + /resume Combo for Multi-Project Session Management

Combine v2.1.108’s /recap with the improved /resume picker for smooth multi-project context switching.

# 1. Switch to another project session
/resume
# → Default: shows only current directory sessions
# → Ctrl+A: shows all project sessions

# 2. Get context after switching
/recap
# → Instant "where did I leave off?" summary

The /resume picker now defaults to current directory sessions, making per-project session management much cleaner.

Slash Command Discovery — Claude Invokes Tools Autonomously (v2.1.108)

Starting with v2.1.108, Claude can invoke built-in slash commands like /init, /review, and /security-review via the Skill tool. Instead of requiring explicit slash command input, Claude now judges the appropriate command from context and executes automatically.

Say “initialize this project” and Claude calls /init. Say “do a security review” and it calls /security-review. Custom skills are discoverable the same way.

Plan-First Workflow — Quantitative Evidence

Community testing shows that asking AI coding agents to implement directly yields ~33% success rate. Following a plan-first workflow — draft plan → review → revise → implement — significantly improves outcomes. This is quantitative justification for using /plan mode or Plan Mode consistently.


Security & Limitations

US Treasury Seeks Mythos Access for Financial System Vulnerability Detection (4/14)

Per Bloomberg, the US Treasury has requested access to Anthropic’s Claude Mythos for defensive use — detecting security vulnerabilities in financial systems.

This follows the 4/12 emergency meeting between the Federal Reserve and Treasury, reflecting the assessment that Mythos’s zero-day detection capabilities (181 successful exploits in Firefox JS engine) could protect national financial infrastructure. With federal agencies now seeking access alongside Project Glasswing’s ~50 partner organizations, Mythos’s influence is expanding from the private sector into government.

Bloomberg

v2.1.108 — 16 Bug Fixes

Key stability fixes:

GitHub v2.1.108


Ecosystem & Plugins

Anthropic LTBT Appoints Vas Narasimhan to Board (4/14)

Anthropic’s Long-Term Benefit Trust appointed former Novartis CEO Vas Narasimhan as a board member. The LTBT is the independent body overseeing Anthropic’s safety policies, influencing Claude’s behavioral guidelines and model release decisions. A pharma/biotech leader joining AI safety oversight suggests “clinical trial-level systematic verification” frameworks may be applied to AI safety evaluation.

Cursor, Claude Code, Codex — The Unplanned Unified Stack

According to The New Stack’s analysis, Cursor (IDE), Claude Code (terminal agent), and Codex (code generation) are converging into a de facto unified AI coding stack. In early April, Cursor rebuilt its parallel agent orchestration interface, OpenAI published an official Claude Code plugin, and early adopters began running all three simultaneously. Competing tools being used complementarily signals that AI coding is evolving from single-tool to ecosystem-level adoption.

The New Stack


Community News


Minor Changes



Interesting Projects & Tools