TL;DR: Claude Code 2.1.191 dropped June 25, 2026 (@ClaudeCodeLog / @marc_krenn). Headline features: /rewind resumes context from before /clear, background agent stops are permanent, ~37% lower CPU during streaming (100ms coalescing), comma-separated hook matchers fixed, and a pile of MCP reliability improvements. Twenty CLI changes total.
Highlights at a glance
Change
Why it matters
/rewind after /clear
Undo an accidental clear without losing the thread
Added /rewind support for resuming a conversation from before /clear was run.
Before:/clear (aliases /reset, /new) wiped context. If you cleared too aggressively, you relied on /resume for a saved session — not the in-flight thread.
After:/rewind rolls back to a checkpoint before the clear, restoring prior context so the session continues.
Fix: Background agents stopped from the tasks panel no longer restart — stopping is permanent.
If you run parallel work via /fork, /agents, or /tasks, a stop that silently undid itself was dangerous (duplicate edits, double bash). 2.1.191 closes that hole.
Related: claude agents no longer sends builtin slash commands like /usage to background sessions as raw prompt text — you get a hint instead.
Performance: 37% less CPU while streaming
Two related improvements:
Coalesce text updates to 100ms → ~37% CPU reduction during streaming responses
Reduced long-session memory growth from terminal output cache
Scroll fix — reading earlier output no longer jumps you to the bottom mid-stream
For developers running sound and traffic-light hooks on long agent sessions, lower CPU and stable scroll make unattended monitoring less painful.
Hooks: comma-separated matchers fixed
Bug: Hooks with matchers like "Bash,PowerShell"silently never fired.
Fix in 2.1.191: Multi-tool matchers parse correctly.
If you copied hook recipes from forums and wondered why nothing ran, update first, then audit ~/.claude/settings.json:
Model aliases (internal/flags):claude-bg-, claude-code-error-tracking, o5-qn, o5-u:, opus-on-pro-near-limit
Treat model slug additions as feature-flag plumbing unless documented on code.claude.com.
How to update
bash
# If installed via npm/homebrew — follow your usual upgrade path
claude --version # confirm 2.1.191+# Or use Claude Code's built-in update mechanism per official docs
Changelog source: @ClaudeCodeLog (unofficial, tolerated bot) · full history in linked GitHub repo.