← Back to all entries
2026-02-04 🧭 Daily News

EU Region Waitlist, How Cowork Was Built & Copilot Confirms Opus 4.6

EU Region Waitlist, How Cowork Was Built & Copilot Confirms Opus 4.6 — visual for 2026-02-04

🧭 EU Inference Region Preview — Waitlist Now Open

A day after launching the inference_geo parameter with US and Global options, Anthropic has opened a waitlist for a dedicated EU inference region. The move responds to demand from European enterprise customers facing GDPR and financial-regulation data-sovereignty requirements that the existing US-or-global options do not satisfy. Continental processing is a hard requirement for production rollouts at several European banks and insurers that have been otherwise ready to deploy Claude.

Participants in the EU preview are told to expect limited throughput initially, with a broader rollout timed alongside planned EU data centre capacity expansion in Q2 2026. Anthropic has not announced which European country or countries will host the first regional infrastructure. The EU region will be priced at the same 1.1× multiplier as US-only inference.

If you are building for EU enterprise customers: Apply for the preview now even if you are not yet ready to use it — waitlist position will determine access priority. In the interim, you can model the compliance pattern with US-only inference and swap the inference_geo value to "eu" when the region opens.

API EU compliance data residency retrospective

🧭 Engineering Post: Cowork Was Built Almost Entirely by Claude Code in 1.5 Weeks

Anthropic has published an engineering post revealing that Claude Cowork's initial codebase was written almost entirely by Claude Code itself in approximately 1.5 weeks of development, with Anthropic engineers acting primarily as architects and reviewers. The post describes the sub-agent coordination architecture: when Cowork encounters independent subtasks, it spawns multiple Claude instances that execute concurrently and aggregate results — the same pattern that would be formally productised as Agent Teams the following week.

The team notes that Cowork served as a live test of the agent-teams pattern, and that building it this way gave Anthropic direct experience of where autonomous coding breaks down. Key failure modes observed: tasks with ambiguous success criteria caused agents to produce technically-correct but misaligned outputs; and large dependency trees required careful sequencing that Claude did not always infer correctly from natural language alone.

Practical lesson for agent-first development: Anthropic's team emphasises that the productivity gains were real and large, but the gains were concentrated in well-scoped modules with clear interfaces. Loosely scoped or cross-cutting tasks required significantly more human iteration. Design your system boundaries first; then let Claude fill in each module.

engineering Cowork Claude Code multi-agent retrospective