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

Claude at WWDC, LG CNS Enterprise & Tokyo Conference Eve

Claude at WWDC, LG CNS Enterprise & Tokyo Conference Eve — visual for 2026-06-09

🧭 Claude Joins Apple's Foundation Models Framework at WWDC 2026

At WWDC 2026 (June 9–13, Cupertino), Apple and Anthropic jointly announced that Claude is now part of Apple's Foundation Models framework — the on-device AI infrastructure introduced with Apple Intelligence. Starting with iOS 27, iPadOS 27, macOS 27, visionOS 27, and watchOS 27 (available this autumn), developers can use a new Swift package to route tasks to Claude when they exceed what the on-device model can handle — including multi-step reasoning, code generation, web search, and code execution. Streaming responses are native to SwiftUI, so real-time Claude output in iOS and macOS apps requires no custom transport layer.

How the framework integration works

import FoundationModels
import Anthropic  // new Apple-distributed Swift package

// Route a complex reasoning task to Claude automatically
let session = LanguageModelSession(
    model: .automatic,           // Foundation Models picks on-device or Claude
    instructions: "You are a helpful coding assistant."
)

let response = try await session.respond(to: "Refactor this Swift function to use async/await: \(code)")
print(response.content)

// Force Claude explicitly for tasks that need internet reasoning
let claudeSession = LanguageModelSession(
    model: .claude,
    instructions: "You are a senior Swift engineer."
)
for try await chunk in claudeSession.streamResponse(to: "Explain this crash log: \(log)") {
    textView.append(chunk)  // native SwiftUI streaming
}
What this means for existing Claude API users

The Foundation Models Swift package is an additional distribution channel — it uses the same underlying Anthropic API and the same operator/user permission model. If you already have an Anthropic API key, you can use it with the Swift package directly during development. For App Store distribution, Apple handles the API routing transparently. Standard usage-based pricing applies; there is no Apple surcharge on Claude calls made through the framework.

⭐⭐⭐ anthropic.com
Apple WWDC 2026 Foundation Models Swift iOS 27 on-device AI SwiftUI

🧭 LG CNS Signs Group-Wide Claude Enterprise Agreement — Asia's Largest Single-Org Deployment

LG CNS — the IT-services arm of South Korea's LG Group, with roughly 7,000 employees and annual revenue above $2 billion — has signed a group-wide Claude Enterprise agreement with Anthropic, covering all LG affiliates from LG Electronics and LG Energy Solution to LG Display and LG Uplus. The deal, reported in the Korea Herald and Seoul Economic Daily, makes it one of the largest single-organisation Claude deployments in Asia to date. The agreement was timed to coincide with Code with Claude Tokyo (June 10–11), signalling Anthropic's commitment to the Asia-Pacific enterprise market.

Planned use cases across LG affiliates

Why this signals a shift in Anthropic's enterprise strategy

Previous major enterprise deals (Rakuten, Softbank, Samsung) were scoped to a single division or use case. The LG CNS agreement is structured as a group-wide deployment — meaning Anthropic is now competing for full-enterprise displacement contracts in the same tier as Microsoft Copilot and Google Workspace AI. The Korean market in particular has been historically dominated by hyperscaler deals; a native-LLM group agreement of this size is a leading indicator of where Anthropic's enterprise sales motion is heading in H2 2026.

LG CNS enterprise Asia-Pacific Korea Claude Enterprise group-wide deployment

🧭 Code with Claude Tokyo: Full Schedule Released — What to Watch June 10–11

With Code with Claude Tokyo opening at 09:00 JST tomorrow at the Tokyo International Forum, Anthropic has published the full two-day session schedule. The conference is Anthropic's first major developer event in Asia, and the lineup reflects the region's distinct priorities: strong enterprise integration tracks, Japanese-language model optimisation, and hands-on workshops targeted at iOS/Swift and Android/Kotlin developers now that Claude is embedded in Apple's Foundation Models framework. Remote attendance is free; all keynotes and selected sessions will be streamed live on anthropic.com.

Highlighted sessions (selected)

How to follow along remotely

All keynotes and the enterprise panel stream live at anthropic.com/events/claude-tokyo-2026. Session recordings are posted within 48 hours. Workshop notebooks and MCP server templates will be published to github.com/anthropics/cc-tokyo-2026 at the start of each session — you can follow along in your own environment without being in Tokyo. The Japanese-language session will have live English subtitles.

⭐⭐⭐ anthropic.com
Code with Claude Tokyo developer conference Asia-Pacific workshops MCP Japanese language mobile
Source trust ratings ⭐⭐⭐ Official Anthropic  ·  ⭐⭐ Established press  ·  Community / research