Anthropic Breaking News | Opus 4.8 and Code v2.1.154 Released on the Same Day

For those wondering "Where should I even start with the Opus 4.8 and Claude Code major updates?", the Clauder Navi editorial team delivers Anthropic's official information from May 29, 2026 (JST) in a news-broadcast style. The previous day, May 28, saw a consecutive series of what are likely the largest updates in recent memory. Today, we break down five headlines — the release of Claude Opus 4.8, Claude Code v2.1.154 / v2.1.153, the Series H funding round, and the opening of the Milan office — with notes on their impact.

Article Summary by AI Chatpowered by Claude
結論powered by Claude

The single most important event on May 28 was the generally available release of Claude Opus 4.8, with the 1M token context window becoming the default across all surfaces — Claude API, Amazon Bedrock, and Vertex AI — representing a groundbreaking leap forward. Teams running long-context agents can benefit from this context expansion without any code changes. The simultaneous GA releases of mid-conversation system messages and stop_details.category standardize in-session instruction updates and refusal routing design for long-running sessions.

In tandem, Claude Code v2.1.154 was released, switching the default model for new sessions to Opus 4.8 and enabling /effort xhigh by default. The new feature Dynamic Workflows (research preview), accessible via /workflows, brings multi-agent orchestration into the standard flow without requiring custom implementations. Note that the behavior of /simplify changed again between v2.1.152 and v2.1.154 — teams with internal automation scripts will need to keep up with this.

On the business side, the Series H round raised $65B at a post-money valuation of $965B, and the Milan office opening were announced simultaneously, reinforcing both the capital runway for the product roadmap and the establishment of a European base. The deprecation of Opus 4.6 fast mode (expected to be discontinued in approximately 30 days) and over 25 bug fixes in v2.1.153 are also in progress concurrently, making it prudent for operations teams to organize their migration plans sooner rather than later.

目次 (7)

[1] Claude Opus 4.8 Released — 1M Context Now Default Across All API Surfaces

On May 28, 2026, Claude Opus 4.8 was released as generally available (primary sources: https://www.anthropic.com/news/claude-opus-4-8 , https://platform.claude.com/docs/en/about-claude/models/whats-new-claude-4-8 ). The 1M token context window is now the default across all surfaces — Claude API, Amazon Bedrock, and Vertex AI — with a max output of 128k tokens (200k default for Microsoft Foundry only). The minimum cacheable length for prompt caching has been reduced to 1,024 tokens, enabling finer-grained caching of diffs compared to Opus 4.7.

Impact for Engineer Readers: ★★★

The biggest impact is the default 1M context. Since context expansion takes effect without code changes for all users — those on the direct Claude API, AWS Bedrock, and Vertex AI — long-context agent workloads will benefit immediately (though the scope of long-context pricing should be verified separately). Adaptive thinking has been improved to "fire thinking tokens only on turns that require them" even at the same effort setting, reducing wasted thinking token consumption. High-resolution image input (up to 2576px on the long side) is on par with Opus 4.7, and task budgets / advisor tool / computer use continue to be supported on Opus 4.8. The behavior where setting temperature / top_p / top_k to non-default values results in a 400 error is the same as in 4.7.

Two related features were released on the same day. Mid-conversation system messages is a feature that allows inserting role: "system" after a user turn in the messages array in Opus 4.8, enabling instruction switching during long sessions while maintaining prompt cache hits (primary source: https://platform.claude.com/docs/en/build-with-claude/mid-conversation-system-messages ). stop_details.category (cyber / bio / null plus a human-readable explanation) was also officially documented on the same day, standardizing branching logic upon receiving a refusal (e.g., routing to an alternative engine or human review) (primary source: https://platform.claude.com/docs/en/build-with-claude/handling-stop-reasons#refusal-categories ). Fast mode for Opus 4.8 has begun as a research preview on the Claude API, while Opus 4.6 fast mode is deprecated (expected to be discontinued in approximately 30 days), requiring migration to Opus 4.8 or 4.7.

Item Details
Release Date 2026-05-28
Default Context 1M tokens (API / Bedrock / Vertex AI), 200k (Microsoft Foundry)
Default Max Output 128k tokens
Minimum Cache Length 1,024 tokens (reduced from Opus 4.7)
Simultaneous GA Features Mid-conversation system messages / stop_details.category refusal
Deprecated Opus 4.6 fast mode (expected to be discontinued in approximately 30 days)
Source https://www.anthropic.com/news/claude-opus-4-8

[2] Claude Code v2.1.154 — Opus 4.8 Default / Dynamic Workflows / Lean System Prompt

On the night of May 28, 2026 (JST), Claude Code v2.1.154 was released (primary source: https://github.com/anthropics/claude-code/releases/tag/v2.1.154 ). This is a large-scale release synchronized with Opus 4.8, changing the default model for new sessions to Opus 4.8, and making Opus 4.8 fast mode (2.5x speed, 2x billing) the default for Max plan users. /effort xhigh is now enabled by default, raising the baseline quality for complex tasks.

Impact for Engineer Readers: ★★★

The new feature Dynamic Workflows has been added, bringing orchestration across dozens to hundreds of agents in the background into the standard flow when instructing Claude to create a workflow. Execution status can be checked via /workflows. What previously required custom orchestrator implementations for multi-agent systems is now available as a standard first-party flow. This is also a sign that Anthropic's first-party product is beginning to encroach on the differentiation space of agent orchestration SaaS providers.

Lean system prompt is now the default for new model groups (excluding Haiku / Sonnet / Opus 4.7 and older), reducing the fixed overhead at the beginning of prompts. Worth noting is the behavior of /simplify: the behavior that was changed in v2.1.152 to become a wrapper for /code-review --fix has been changed again in v2.1.154 to its own behavior of "running a cleanup-only review (reuse, simplification, efficiency, altitude) and applying fixes". Since this is a command whose behavior has changed twice within two weeks, teams using /simplify in internal automation scripts need to keep up with the spec. The /effort slider has been renamed from "Speed/Intelligence" to "Faster/Smarter", and plugins can now declare defaultEnabled: false in plugin.json, enabling opt-in default behavior for organizationally distributed plugins.

Additionally, CLAUDE_CODE_SESSION_ID + CLAUDECODE=1 are now passed as environment variables to Stdio MCP subprocesses, and claude mcp list/get now displays unapproved .mcp.json servers as ⏸ Pending Approval. In claude agents (background agents), it is now possible to run shell commands as background sessions with ! <command> in dispatch input, /logout has been changed to a sign-out behavior, and the /claude-api skill has been updated with Opus 4.8 support + 4.7 → 4.8 migration guidance.The CLAUDE_CODE_OPUS_4_6_FAST_MODE_OVERRIDE environment variable is scheduled for removal on 2026-06-01.

The bug fixes are extensive, but particularly noteworthy are: fix for rm -rf $HOME not being blocked when HOME has a trailing slash (security issue), fix for $TMPDIR inconsistency inside and outside sandbox, fix for premature completion notifications for background agents with 1M context models, fix for goal loss when a scheduled /command fires, and fix for Auto mode incorrectly blocking when the safety classifier has insufficient output tokens. These are a welcome set of fixes for the safety requirements of autonomous agent operations.

Item Details
Release Date/Time Night of 2026-05-28 JST
Default Model Changed to Claude Opus 4.8 (fast mode default for Max plan)
Default /effort xhigh now enabled by default
New Feature Dynamic Workflows (research preview / /workflows)
Change to Note /simplify undergoes its 2nd behavior change between v2.1.152 and v2.1.154
Security Fix for rm -rf $HOME not being blocked with trailing slash
Scheduled Removal CLAUDE_CODE_OPUS_4_6_FAST_MODE_OVERRIDE deprecated on 2026-06-01
Source https://github.com/anthropics/claude-code/releases/tag/v2.1.154

[3] Anthropic Series H Funding — $65B / Post-Money $965B

On May 28, 2026, Anthropic announced that it had raised $65B in a Series H round, with a post-money valuation reaching $965B (primary source: https://www.anthropic.com/news/series-h ). This announcement came amid the simultaneous release of Claude Opus 4.8, the release of Claude Code v2.1.154, and the announcement of the Milan office opening, and is positioned as a capital-side move to secure the runway for executing the product roadmap.

Impact for Engineer Readers: ★

No direct impact on product specifications has been announced concurrently. For engineer readers designing products with high dependency on the Anthropic API, this is a signal of a scale that reinforces the outlook for long-term platform sustainability and investment in model R&D. A post-money valuation of $965B is a number that solidifies Anthropic's position as a top-tier frontier model provider on the capital side as well, and the continuity of multi-cloud delivery including Bedrock, Vertex AI, and Foundry can be read as remaining assured.


[4] Anthropic Milan Office Opening — European Base Expansion

On May 27, 2026, Anthropic announced the opening of a Milan office as a European base, establishing a structure to support the Italian market's enterprise, research, and developer communities (primary source: https://www.anthropic.com/news/milan-office-opening ). This is an expansion of European presence following Asia (Tokyo and Seoul in preparation), in the context of strengthening on-the-ground support for compliance with European local regulations (GDPR, AI Act).

Impact for Engineer Readers: ★

There is no direct impact on product specifications, but for businesses with European customers, the practical benefit is that communication channels increase. The presence of local staff for the operational phase of the AI Act is expected to lead to shorter lead times for regulatory inquiry responses and obtaining compliance documentation.


[5] Claude Code v2.1.153 — Marketplace skipLfs and Over 25 Bug Fixes

On the morning of May 28, 2026 (JST), Claude Code v2.1.153 was released (primary source: https://github.com/anthropics/claude-code/releases/tag/v2.1.153 ). This is a mid-scale maintenance release immediately preceding v2.1.154, with over 25 fixes applied.

Impact for Engineer Readers: ★★

On the feature enhancement side, a skipLfs option (for github/git sources) was added to the Plugin marketplace, stabilizing distribution when dealing with large-scale LFS repositories. Improvements also include notification when npm global auto-update fails, providing COLUMNS / LINES environment variables to status line commands, and claude doctor displaying the result of the last update attempt. In claude agents, dispatch input autocomplete now integrates slash commands and skills as unified candidates, and the PR column now displays PR #N for a single PR and N PRs for multiple. On macOS, background agents now appear under the name "Claude Code" in Privacy & Security settings, increasing operational transparency.

Bug fixes resolve: MCP server reconnection loops, credential leakage pathways to custom API gateways (security issue), sub-agent frontmatter MCP servers ignoring admin settings, Windows PowerShell installer falsely reporting success, claude update referencing the wrong channel, multi-GB memory leaks on session resume, file:// links in Claude responses not being clickable, response loss during /bg, /copy clipboard update failure for attached background sessions on tmux, zombie sessions when Remote Control is enabled, and unification of the default save behavior for /model (consistent with IDE) — broadly resolving issues that were critical for enterprise operations.

Impact on internal keybindings: The modelPicker:setAsDefault keybinding has been renamed to modelPicker:thisSessionOnly, so teams using that keybind will need to update their configuration.

Item Details
Release Date/Time Morning of 2026-05-28 JST
Type Mid-scale maintenance release (feature additions + 25+ bug fixes)
Key Additions Plugin marketplace skipLfs / claude doctor improvements / COLUMNS / LINES env
Security Fix for credential leakage pathway (custom API gateway)
Note modelPicker:setAsDefault → renamed to modelPicker:thisSessionOnly
Source https://github.com/anthropics/claude-code/releases/tag/v2.1.153

What to Watch Next

There are three immediate priorities. First, plan for the deprecation of Opus 4.6 fast mode (expected to be discontinued in approximately 30 days) — switching to Opus 4.8 or 4.7, aligned with the scheduled removal of the CLAUDE_CODE_OPUS_4_6_FAST_MODE_OVERRIDE environment variable on 2026-06-01. Second, verify the billing impact of the default 1M context — it is safer to clarify the scope of long-context pricing across Bedrock and Vertex AI before deploying to production. Third, pilot Dynamic Workflows and Lean system prompt internally — if you have your own multi-agent infrastructure, this is a good time to redesign the boundary of design responsibilities with the first-party solution, which will make it easier to track future diffs. The Clauder Navi editorial team will continue to deliver implementation guides for each of these topics.


Sources

参考になったら ♡
Clauder Navi 編集部
@clauder_navi

Anthropic の Claude / Claude Code を中心に、日本のエンジニア向けに最新動向と実務 を毎日発信。 運営方針 は メディアについて をご覧ください。