Claude Tag brings a multiplayer @Claude to Slack, plus a GPT-5.6 preview


TLDR;

Anthropic shipped Claude Tag — a multiplayer @Claude that lives in your Slack channels for Enterprise and Team customers — and published a new Economic Index report on how people actually pace their Claude usage. Claude Code had a fast week: releases v2.1.186 through v2.1.195 hardened auto-mode safety, MCP authentication, voice dictation, and background agents (plus a quiet OpenTelemetry change that can start logging assistant responses on upgrade — worth a look before you update). On the competitive side, OpenAI's Codex Remote reached general availability and OpenAI previewed the GPT-5.6 (Sol / Terra / Luna) family. One deprecation to flag: claude-mythos-preview retires Tuesday, June 30 — its successor claude-mythos-5 stays limited to Project Glasswing partners, so general users should build on Claude Opus 4.8.


Sponsored by CodeRabbit

Review the actual change, not the file list

AI writes more code than ever. Reviewing it shouldn't mean scrolling forty files in alphabetical order.

CodeRabbit Review reorganizes any pull request from a flat file list into a structured, layer-by-layer walkthrough — the logical reading order of the change, not the order your platform happens to sort it. Every range gets a plain-language summary, with sequence diagrams, state machines, and ERDs generated inline wherever a visual earns its place.

Cohorts group related files so you review one idea at a time. Layers put foundational changes — data shapes, contracts — before the code that depends on them. Code Peek shows any symbol's definition and usages without leaving the tab, and Semantic Diff cuts past formatting noise to what actually changed. Comment on exact line ranges; native reviews and approvals post back to GitHub or GitLab.

From the team that pioneered AI code reviews: 2M reviews a week, 6M repos, 15K customers. Free for everyone in early access.

Review your next PR with CodeRabbit Review →


API & Model Updates

Claude Tag — Multiplayer @Claude Arrives in Slack

Jun 23, 2026

Claude Tag lets Claude Enterprise and Team customers add @Claude to selected Slack channels, grant it scoped access to tools, data, and even codebases, and then tag it to delegate tasks. One Claude per channel means anyone can see what it's working on and pick up where a teammate left off; it builds context from the channels it's in over time and can schedule work to run later. It replaces the old "Claude in Slack" app (admins opt in to migrate within 30 days) and runs on Opus 4.8. Anthropic frames it as the next step beyond Claude Code — 65% of its own product team's code now comes from an internal version. If you're integrating Claude into team workflows, the multi-user session model and channel-scoped permissions are the parts to study.

Org-Configured Model Restrictions Land in Claude Code (v2.1.187)

Jun 23, 2026

Org admins can now restrict which models appear in the model picker, the --model flag, the /model command, and the ANTHROPIC_MODEL env var — users hitting a restricted model see a clear "restricted by your organization's settings" message. If your deployment uses managed settings, audit your availableModels policy (enforced via enforceAvailableModels) before the next auto-update.


Claude Code & CLI

A run of releases landed this week, v2.1.186 through v2.1.195 (several version numbers were skipped). Highlights by theme:

Auto-Mode Gets Denial Transparency & Finer Shell Control (v2.1.193)

Jun 25, 2026

Auto-mode denial reasons now appear in the transcript, the denial toast, and /permissions recent denials — no more silent rejections. The new autoMode.classifyAllShell setting routes all Bash/PowerShell commands through the classifier, not just arbitrary-code-execution patterns; useful for tighter enforcement in shared or CI environments.

Heads-Up: OpenTelemetry Now Logs Assistant Responses (v2.1.193)

Jun 25, 2026

v2.1.193 added a claude_code.assistant_response OpenTelemetry log event that carries the model's response text. It's redacted by default — but when OTEL_LOG_ASSISTANT_RESPONSES is unset, it follows your existing OTEL_LOG_USER_PROMPTS setting. So any deployment already logging user prompts will silently start capturing assistant response content on upgrade. Set OTEL_LOG_ASSISTANT_RESPONSES=0 to keep prompts-only logging.

/rewind Now Survives /clear, Plus ~37% Less CPU While Streaming (v2.1.191)

Jun 24, 2026

/rewind can now resume a conversation from before /clear was run, giving you a durable escape hatch when you need to recover context you thought was gone. The same release permanently fixes background agents resurrecting after being stopped from the tasks panel, cuts CPU use during streaming by roughly 37% (text updates are coalesced to 100ms), and fixes comma-separated hook matchers (e.g. "Bash,PowerShell") that previously never fired.

MCP CLI Auth, Hook-Matcher Fixes & Structured-Output Reliability (v2.1.186, v2.1.195, v2.1.187)

Jun 22–26, 2026

claude mcp login and claude mcp logout now authenticate MCP servers without opening the /mcp menu, with --no-browser stdin redirect to complete cleanly over SSH (v2.1.186). Hook matchers with hyphenated identifiers (e.g. mcp__brave-search) now exact-match instead of substring-match — use mcp__brave-search__.* to match all tools from that server (v2.1.195; pairs with the v2.1.191 comma-matcher fix). And structured output via --json-schema and agent({schema}) no longer loops indefinitely after a successful call (v2.1.187).

Bash Mode Gains Live Path Autocomplete and Auto-Response (v2.1.193 & v2.1.186)

Jun 22–25, 2026

! bash commands now get live file-path autocomplete (v2.1.193), and Claude automatically responds to the output of ! commands (v2.1.186) — set "respondToBashCommands": false in settings.json to keep the previous context-only behavior.

Voice Mode Fixes: macOS Silence, CJK Auto-Submit, Linux Device Detection (v2.1.195)

Jun 26, 2026

Voice dictation on macOS no longer captures silence during long sessions when the default input device changes. Auto-submit now fires correctly for languages written without spaces (Japanese, Chinese, Thai). Linux voice mode now distinguishes "no microphone" from "SoX not installed."

Background Agents: Sandbox Credentials & Memory-Pressure Reaping (v2.1.187 & v2.1.193)

Jun 23–25, 2026

The new sandbox.credentials setting blocks sandboxed commands from reading credential files and secret env vars — useful defence-in-depth in multi-agent pipelines (v2.1.187). Idle background shell commands now get automatically reaped under memory pressure (disable with CLAUDE_CODE_DISABLE_BG_SHELL_PRESSURE_REAP=1) (v2.1.193). Background subagents also now surface permission prompts in the main session instead of auto-denying (v2.1.186).

Remote MCP Tool Calls Now Time Out Instead of Hanging Forever (v2.1.187)

Jun 23, 2026

Remote MCP tool calls that produce no response now abort with an error after 5 minutes instead of blocking indefinitely. Override the timeout with CLAUDE_CODE_MCP_TOOL_IDLE_TIMEOUT if your server legitimately needs longer.

CLAUDE_CODE_DISABLE_MOUSE_CLICKS Env Var Added (v2.1.195)

Jun 26, 2026

Disables mouse click/drag/hover in fullscreen mode while preserving wheel scroll — useful for terminal multiplexers or remote sessions where mouse events interfere with the host. (Context: v2.1.187 added mouse-click support to fullscreen select menus like permission prompts, /model, and /config; this env var turns it back off.)


Agent SDK & Managed Agents

TypeScript Agent SDK v0.3.195 — Query.reinitialize() Added

Jun 26, 2026

Query.reinitialize() re-sends the initialize control request and redelivers pending permission/dialog prompts after a transport gap — helpful for long-running or resumable agent sessions that drop and reconnect.

TypeScript Agent SDK v0.3.193 — promptSuggestions in the Browser SDK

Jun 25, 2026

The new promptSuggestions option on the Browser SDK's query() opts the remote CLI into emitting follow-up suggestions; this release also fixes console window flashes on Windows when spawning CLI subprocesses.

TypeScript Agent SDK v0.3.191 — Per-Model Weekly Limits Surfaced

Jun 24, 2026

SDKRateLimitInfo.rateLimitType now includes seven_day_overage_included, and usage responses expose a model_scoped array with per-model weekly limit windows, utilization percentages, and reset times. Also fixes fast mode reverting to standard after the first turn.

TypeScript Agent SDK v0.3.186 — rewind_conversation, Background-Agent Permission Forwarding

Jun 22, 2026

Background agents now forward permission prompts to canUseTool instead of auto-denying, and stdin stays open while background tasks run. The rewind_conversation control request adds durable resume-anchor support for conversation rewinds. ReadMcpResourceDirTool is now a dedicated tool type.

Python Agent SDK v0.2.110 — Bundled CLI Updated to v2.1.191

Jun 24, 2026

pip install claude-agent-sdk==0.2.110 bundles Claude Code CLI v2.1.191.


MCP Ecosystem

Startup Notice When MCP Servers Need Auth (v2.1.193)

Jun 25, 2026

Claude Code now shows a startup notice when any configured MCP server requires authentication and points users directly to /mcp — reducing silent failures in fresh environments.

ReadMcpResourceDirTool Now a Dedicated Tool Type (SDK v0.3.186)

Jun 22, 2026

MCP resource directory listing is now its own tool type in SDK schemas rather than a fallback inside ReadMcpResourceTool — relevant if your SDK code pattern-matches on tool types for logging or permission filtering.


Developer Tools & Community

Piebald AI — claude-code-system-prompts Tracks v2.1.195

Jun 26, 2026

This community repository mirrors Claude Code's system prompts within minutes of each release, and now tracks v2.1.195. It holds 515 prompt strings in total — builtin tool descriptions, sub-agent prompts, and utility prompts — with a CHANGELOG.md spanning 221 versions back to v2.0.14. Useful for anyone building tools that depend on understanding Claude Code's internal prompt structure.


Competitor Dev Tools

OpenAI Codex Remote Reaches General Availability

Jun 25, 2026

Codex Remote — start or continue work on a connected Mac or Windows host from the ChatGPT mobile app, reviewing progress and approving actions from your phone — is now generally available. Remote Control uses authenticated one-to-one QR pairing between each iOS/Android device and each host; connections used since June 8 stay paired, while older inactive ones need to re-pair. The same update ships a DigitalOcean plugin to provision a Droplet as a remote workspace. It closes the "drive your coding agent from your phone" gap that Claude Code doesn't cover natively — and the forced re-pairing of pre-June-8 connections is worth flagging to anyone who left old pairings live.

OpenAI Previews GPT-5.6 (Sol / Terra / Luna)

Jun 26, 2026

OpenAI previewed the GPT-5.6 family: Sol (the flagship, its strongest model yet), Terra (balanced everyday work at roughly GPT-5.5 quality for about half the price), and Luna (fast and cheapest). The naming now separates generation (the number) from durable capability tiers (Sol/Terra/Luna). A new max reasoning effort and a new ultra mode that fans work out to subagents target complex agentic work, and Sol sets state-of-the-art on Terminal-Bench 2.1. Pricing per 1M tokens: Sol $5 in / $30 out, Terra $2.50 / $15, Luna $1 / $6. Important caveat: this is a limited preview — access is gated to a small set of trusted partners via the API and Codex (a US-government-requested phased rollout tied to cyber capability), with general availability "in the coming weeks." For most builders it's watch-don't-deploy; the nearer-term pressure is Terra's price, not Sol's availability.


Research & Safety

Anthropic Economic Index — "Cadences" Report

Jun 26, 2026

The latest Economic Index report examines usage cadences — how frequently, at what times of day, and in what weekday/weekend patterns people use Claude for work — drawing on usage data plus a roughly 9,700-person survey. Useful background for builders designing products around sustained Claude usage rather than one-shot interactions.


Action Items

By Tuesday, June 30, 2026:

  • claude-mythos-preview retires Tuesday, June 30. Anthropic's docs list claude-mythos-5 as the successor, but it's restricted to vetted Project Glasswing partners — and Mythos/Fable access has been export-suspended since June 12. For general production use, build on Claude Opus 4.8 (claude-opus-4-8); Claude Fable 5 (claude-fable-5) is the same-tier public option once access is restored.

Ongoing — Review Before Next Deploy:

  • Check OpenTelemetry logging before upgrading to v2.1.193+ — if you log user prompts but don't want assistant response text captured, set OTEL_LOG_ASSISTANT_RESPONSES=0 (otherwise it inherits your prompt-logging setting on upgrade).
  • Update MCP hook matchers with hyphenated server names — after v2.1.195, mcp__brave-search exact-matches only; use mcp__brave-search__.* to catch all tools from that server.
  • Audit your availableModels managed-settings policy — v2.1.187 enforces org model restrictions across the picker, --model, /model, and ANTHROPIC_MODEL.
  • Review the sandbox.credentials setting — new in v2.1.187; enable it in multi-agent or shared environments to block sandboxed commands from reading credential files and secret env vars.
  • Set "respondToBashCommands": false if you rely on ! bash commands being context-only — v2.1.186 now triggers Claude to respond to ! output automatically by default.
  • Check CLAUDE_CODE_MCP_TOOL_IDLE_TIMEOUT if any remote MCP server legitimately needs more than 5 minutes to respond — the new v2.1.187 default will abort those calls with an error.
  • Upgrade the TypeScript Agent SDK to v0.3.191+ to get per-model weekly limit data (model_scoped) in usage responses — important for dashboards or quota-management tooling.

By August 5, 2026:

  • Migrate off claude-opus-4-1-20250805 — deprecated June 5 with a 60-day clock; hard retirement August 5; migrate to Claude Opus 4.8.

Want to catch up? Read every past issue of This week in Claude.


Did you like this issue?

One tap is the fastest way to shape next week.

👍 Liked it  ·  👎 Didn't like it

And I read every reply. Hit reply and tell me what you want more of, or less of, and it goes straight into the next issue.

Mert Duzgun

A weekly digest for Claude Code builders. Model updates, releases, and notable tools. Every Monday morning.

Read more from Mert Duzgun

TLDR; Fable 5 is back: the United States government lifted the June 12 export controls on June 30, Claude Fable 5 rolled out globally on July 1, and Mythos 5 is restored for approved United States organizations. Claude Sonnet 5 is now the default model in Claude Code — with two breaking API changes and a new tokenizer to check before you migrate. Claude Code shipped six releases (v2.1.196–v2.1.201), beta TypeScript and Python SDKs landed for the stateless MCP spec finalizing July 28, and...

TLDR; The headline might be what's not happening: Anthropic paused the June 15 Agent SDK billing change, so claude -p, the Agent SDK, Claude Code GitHub Actions, and third-party apps keep drawing from your subscription exactly as before — no credit to claim, nothing to do. Beyond that, a dense week across the Claude platform: Artifacts ship in Claude Code for Team and Enterprise, the Design ↔ Code sync goes bidirectional, and Opus 4.7 clocks in at 20× faster than last year's best human team...

TLDR; Anthropic launched Claude Fable 5 — its first publicly available Mythos-class model — on Tuesday (June 9), then on Friday (June 12) a US government export-control directive forced Anthropic to suspend Fable 5 and Mythos 5 for all users; access is still down with no restoration date. Meanwhile, two deadlines land today (June 15): Claude Sonnet 4 and Opus 4 API calls start erroring, and the agent/headless billing split goes live. Claude Code shipped eight releases this week...