← Back to all entries
2026-06-18 🧭 Daily News

Founder House Berlin, G7 Communiqué & Nested Sub-Agents in Claude Code

Founder House Berlin, G7 Communiqué & Nested Sub-Agents in Claude Code — visual for 2026-06-18

🧭 Claude Founder House Berlin: Anthropic's First European Developer Day

Anthropic ran its inaugural Claude Founder House Berlin today — a full-day live event in Berlin (streamed from 09:00 CEST) aimed at founders and developers building European companies on Claude. The format mirrors Anthropic's Founder House series in San Francisco and New York, adapted for the European context: a morning Founder cohort combining keynote sessions with peer programming, and an afternoon Builder cohort focused on hands-on construction with live Anthropic engineers on hand.

What the morning keynotes covered

Afternoon Builder cohort highlights

The afternoon session included three hours of structured building time, with Anthropic engineers rotating between tables. Common patterns that emerged:

EU AI Act reference guide: where to find it

Anthropic published the EU AI Act tier mapping today at anthropic.com/eu-ai-act. Even if you are not yet subject to the Act's high-risk provisions, the document is worth reading as a checklist of documentation you will eventually need. The Act's high-risk provisions begin applying in August 2026, leaving roughly two months for teams to close gaps.

⭐⭐⭐ anthropic.com
Founder House Berlin European developers GDPR EU AI Act data residency inference_geo api.eu.anthropic.com regulated industries fintech conformity assessment ephemeral caching reasoning trace audit log

🧭 G7 AI Communiqué Published: What the Risk-Tiered Deployment Framework Means for Claude API Developers

Following Dario Amodei's briefing to G7 leaders yesterday in Evian, the full G7 AI Governance Communiqué was published this morning. The central mechanism is "risk-tiered deployment authorisation" — a three-tier classification system that determines how much pre-deployment review a model or application requires before it can be commercially deployed. The framework is non-binding in its current form but is described as a template for domestic legislation.

The three tiers

What this actually means for most Claude developers right now

Almost nothing changes immediately — the communiqué is a non-binding template and domestic legislation will take time to follow. The practical near-term implication for Tier 2 applications: if you are building in healthcare, finance, or employment, start documenting your conformity assessment process now. Anthropic has committed to publishing a "compliance evidence package" for enterprise customers by Q3 2026 that covers what Anthropic contributes to a Tier 2 conformity assessment, so you only need to document the application-layer decisions you made on top of Claude. Watch for that documentation release; it will materially reduce the compliance burden.

What the communiqué does not do

Notably absent: any binding international coordination mechanism on compute thresholds, which Amodei had specifically requested. G7 members agreed on the principle of aligning definitions of "frontier training run" but deferred the specific FLOPs number to a subsequent technical working group. The working group is expected to report back at the G7 AI ministerial in October 2026.

⭐⭐ reuters.com
G7 communiqué risk-tiered deployment Tier 1 applications Tier 2 high-impact Tier 3 frontier conformity assessment 10^26 FLOPs incident reporting compute thresholds G7 AI ministerial compliance evidence package AI governance non-binding framework

🧭 Claude Code Gains Nested Sub-Agent Spawning — Agents That Create Their Own Agents

A significant Claude Code release shipped overnight, introducing nested sub-agent spawning: the ability for a sub-agent to spawn its own child agents. Until now, Claude Code's multi-agent mode was strictly two-level — an orchestrator could spawn sub-agents, but sub-agents could not themselves spawn further agents. That constraint is now lifted. The result is true hierarchical multi-agent architectures: an orchestrator can delegate to a project manager agent, which can itself spin up specialist agents for individual sub-tasks, with results rolled up back through the tree.

How to use it

Nested spawning is enabled by default when --agents is passed to Claude Code. Sub-agents that want to spawn children use the same spawn_subagent tool call their parent used. The depth limit is configurable:

# Default: depth limit of 3 (orchestrator + 2 levels of nesting)
claude --agents "Refactor the payments module"

# Increase depth for deeply hierarchical tasks
claude --agents --max-agent-depth 5 "Audit the entire codebase for security issues"

# Disable nesting (revert to two-level-only)
claude --agents --max-agent-depth 1 "Run all the tests"

Also in this release

Watch out: nested agents multiply token consumption non-linearly

Each level of nesting adds its own full context window. A three-level deep tree where every agent runs a 100K-token session consumes tokens in a pattern like parent + (N × child) + (N × M × grandchild). For a branching factor of 5 at each level, that is 1 + 5 + 25 = 31 concurrent context windows. Set --max-agent-depth deliberately and use --agent-budget-tokens per agent to cap individual agent context sizes. The billing dashboard now shows per-depth-level token breakdowns to help you understand where consumption is concentrated.

Claude Code nested sub-agents hierarchical agents spawn_subagent max-agent-depth /cd command mid-stream recovery WSL2 fix multi-agent agent-budget-tokens token consumption orchestrator agentic coding
Source trust ratings ⭐⭐⭐ Official Anthropic  ·  ⭐⭐ Established press  ·  Community / research