Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All releases Home olderv2.1.167 v2.1.169newer

Claude Code v2.1.168

3 entries read diff v2.1.167 → v2.1.168 Markdown

This is a small maintenance release built on June 6, 2026. The primary substantive change is the addition of extended thinking budget support for the claude-mythos-preview model family, along with infrastructure pre-registration for two upcoming model families ("fruitcake" and "macaroon"). All other changes are version number propagation across the codebase.

Find
Pick an entry · j / k steps through
3 entries

Changesopen

Extended Thinking Budget for claude-mythos-preview#

Claude Code now enables extended thinking for models in the "mythos" family (such as claude-mythos-preview) where it was previously disabled. Two distinct thinking budget paths are updated:

  • The always-disabled thinking path ([false, 0]) now returns [undefined, 2048] for mythos-family models, activating thinking with a 2048-token budget.
  • The main thinking configuration path now checks for mythos-family models first and applies a dedicated 2048-token budget constant (Cx4) before falling through to the general thinking settings.

This means users who have claude-mythos-preview configured as their model will now benefit from extended reasoning where Claude thinks through problems more carefully before responding.

Evidence

Model family detection uses ZW_ = ["fruitcake", "macaroon", "mythos"] — search for "mythos" in the source; thinking budget is Cx4 = 2048 (search for "Cx4 = 2048").

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

New Model Family Codenames Pre-Registered#

Two new model family identifiers, "fruitcake" and "macaroon", are pre-registered alongside "mythos" in the model-family detection array. These codenames are used by the same thinking-budget routing logic described above, meaning that when models with these internal names ship they will automatically inherit the same 2048-token thinking configuration without requiring a code change.

No user-facing claude-fruitcake- or claude-macaroon- models are available yet; this is infrastructure preparation.

Evidence

New array ZW_ = ["fruitcake", "macaroon", "mythos"] (search for "fruitcake").

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

Advisor Model Matching Improved#

A new helper function was added that finds which advisor model family a given model name belongs to by doing a case-insensitive substring search against the list of valid advisor model families (["opus", "sonnet"]). This replaces ad-hoc string comparisons and makes error messages for invalid advisor choices more consistent.

Evidence

New function DxA performs _sH.find((q) => $.includes(q)) where _sH = ["opus", "sonnet"] (search for "cannot be used as an advisor. Valid options").

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

Verbatim
Official · Anthropic

Anthropic’s official release notes

Published verbatim by Anthropic for v2.1.168. Text is unmodified from the upstream changelog. Everything else on this page came out of the bundle instead, which is why the two lists don't match.

  • Bug fixes and reliability improvements
System prompt

No change to the system prompt since v2.1.167.

Claude Code, interactive mode