---
title: "WWDC 2026: Apple Goes All-In on External AI — Claude, Gemini, and GPT Are Now Inside Xcode"
date: 2026-06-09
tags: ["wwdc","apple","siri","gemini","xcode-27","core-ai","mcp","anthropic"]
categories: ["AI Tools","Industry"]
summary: "Tim Cook's final WWDC keynote delivered on every preview: Siri 2.0 runs on Google Gemini, Core ML is formally replaced by Core AI, and Xcode 27 now ships Claude, Gemini, and OpenAI as native coding agents with full MCP support. Developer betas went live June 8. Here's what actually changed — including two things no preview article caught."
---


Tim Cook walked off the Apple Park stage for the last time as CEO on June 8 — and he did it by announcing that three competitors now power the most important platform Apple has ever built for developers.

Siri runs on Google's Gemini. Xcode 27 ships Claude, Gemini, and OpenAI as first-class coding agents. Core ML is dead, replaced by Core AI. iOS 27 and macOS 27 ("Golden Gate") developer betas landed the same day as the keynote.

This is not the Apple that spent five years telling developers its on-device models were all they'd ever need. This is Apple as a platform layer on top of the frontier AI labs — and it is making some deliberate choices about which labs it trusts and how.

## Siri 2.0: Google's Model, Apple's Privacy Story

The headline: Apple rebuilt Siri on Google Gemini for cloud reasoning, paired with a new generation of Apple Foundation Models for on-device, privacy-gated tasks.

The division is deliberate. Queries that touch personal data — your calendar, messages, health records — stay on-device using Foundation Models running on Apple Silicon's Neural Engine. Queries that benefit from reasoning at scale go to Gemini via Private Cloud Compute, Apple's hardware-attested inference infrastructure. Craig Federighi's framing: "We believe privacy in AI is non-negotiable. Data is only used to execute your request."

What's new in Siri beyond the model swap: a standalone Siri app, cross-app context during calls (Phone pulls from Mail and Messages in real time), and conversational repair — you can correct Siri mid-task without restarting. The redesigned experience works with visual intelligence to understand what's on screen.

**The constraint no preview piece highlighted:** Siri AI will not be available in the EU or China at launch. Digital Markets Act compliance means Apple cannot ship Siri AI in Europe with iOS 27. That is approximately 400 million users who get the old Siri when your app ships in September. If you're building on Siri Extensions, plan for a graceful fallback.

## Core AI Replaces Core ML

Core ML has been Apple's machine learning framework since 2017. At WWDC 2026, it received a formal retirement notice.

Core AI is the replacement: an on-device framework optimized for Apple Silicon's unified memory and Neural Engine that lets developers deploy full-scale LLMs locally without cloud dependencies. The key architectural addition is a standardized plugin mechanism — you bring the model (Apple Foundation Models, Claude, Gemini, or any provider implementing the new language model protocol), Core AI handles the runtime, memory management, and Neural Engine orchestration.

The **Foundation Models Framework** also gained meaningful additions: a single native Swift API now handles image input, server model support alongside on-device inference, custom skill building, and **Dynamic Profiles** — a mechanism to update model behavior in real time without shipping a new app version. That last feature is more significant than it sounds: it decouples model configuration updates from App Store review cycles.

Notable for indie developers: Apple is offering **free API access** to Foundation Models on Private Cloud Compute for App Store Small Business Program participants (under 2 million downloads). That's a real onramp for small teams building AI-native apps.

Apple says Core ML inference APIs are backwards-compatible through iOS 28. Migration documentation is in the WWDC 2026 session notes. iOS 29 is when you have to be fully off it.

## Xcode 27: The Coding Agent Platform

This is the announcement that matters most for anyone using AI in a development workflow.

Xcode 27 ships Claude (Anthropic), Gemini (Google), and ChatGPT (OpenAI) as native, first-class coding agents — not plugins, not extensions. Built in. The agents handle interactive planning, multiturn Q&A, autonomous validation (tests, Playgrounds, Previews, Simulator), and can run in parallel via Apple's new Device Hub for multi-device testing.

The integration standard: **Model Context Protocol** for custom tools and integrations, plus a new **Agent Client Protocol** compatibility layer — Apple's implementation of ACP/A2A, which enables cross-agent workflows that extend beyond the IDE boundary. GitHub and Figma are the launch integration partners: GitHub for repository context and PR workflows, Figma for design-to-code handoffs.

**The architectural detail no preview mentioned:** Xcode 27 is Apple Silicon only. The app is 30% smaller and ships with a performance jump Apple attributes to eliminating Intel code paths entirely. If your CI pipeline still runs Intel Macs, Xcode 27 forces a hardware decision. Xcode 26.3 is your last Intel stop.

For developers already using Claude Code with Xcode 26.3 via the MCP bridge (documented [here](/posts/xcode-26-3-apple-goes-all-in-on-agentic-coding/)), the Xcode 27 integration should be additive — Apple is building on the same MCP foundation, not replacing it.

## App Intents: SiriKit's Formal Funeral

SiriKit received a formal deprecation notice at WWDC 2026. App Intents is now the only way Siri can call into a third-party app, and it's the only entry point to the new Siri Extensions system.

Siri Extensions let third-party apps plug generative AI capabilities directly into Siri, Writing Tools, and Image Playground. The AI model can be yours — Apple Foundation Models, Claude, Gemini — as long as the integration runs through the App Intents framework. Apple described this at WWDC as "turning every app into an AI agent."

If your app currently uses SiriKit Intents (`INIntent` subclasses), they'll continue working through iOS 29 but won't gain new Siri AI capabilities. The migration to App Intents is now a timeline question, not an if.

The practical implication: any developer who wants their app to show up in Siri's new AI-powered experience needs to have App Intents coverage in place before iOS 27 ships to consumers this fall.

## Tim Cook → John Ternus: What Hardware-First Leadership Signals

Cook confirmed what Bloomberg reported last month: John Ternus takes the CEO role September 1, 2026. Ternus is Apple's SVP of Hardware Engineering — the architect of Apple Silicon, the M-series chips, and the manufacturing precision that makes on-device AI viable.

Reading the transition as a signal: Apple is betting the hardware moat — Apple Silicon, Private Cloud Compute, Secure Enclave — is the defensible layer. The AI model layer they've already conceded to Google for Siri and opened to Anthropic and OpenAI in Xcode 27. The next CEO's job is to make Apple Silicon the platform every AI model wants to run on. That's a coherent strategy, and it's one that benefits Claude specifically: the better the hardware runtime, the more valuable the best model.

## What This Means for Developers

Apple's WWDC 2026 message is consistent across every announcement: they are building a platform layer, not a model. Core AI abstracts the model. Siri Extensions abstract the agent. Xcode 27 treats Claude, Gemini, and GPT as interchangeable providers behind a standard interface.

That's good for the frontier labs and complicated for Apple. Anthropic's coding benchmarks — 87.6% SWE-bench Verified and 69.2% SWE-bench Pro for Opus 4.8 — make Claude the natural choice when developers get to pick their agent in Xcode 27. Google powers Siri but faces an inherent tension between its platform ambitions (Gemini on Android, Antigravity) and its new role as Apple's cloud reasoning engine.

**Developer action items for today:**

1. **Download Xcode 27 beta** and verify your Claude Code + MCP setup carries forward from 26.3.
2. **Audit your SiriKit usage.** Find all `INIntent` subclasses and map them to App Intents equivalents.
3. **Plan EU/China fallback.** Siri AI exclusion means any Siri Extension feature needs a degraded-mode path for European and Chinese users.
4. **Evaluate Core AI.** If you're building any on-device AI feature, Core ML is a dead end — documentation is live at developer.apple.com.
5. **Check your CI hardware.** If Intel Macs are in your pipeline, Xcode 27 forces a hardware upgrade decision.

The developer betas are live. The migration clocks are running.

---

*Sources: [Apple Newsroom (developer tools announcement)](https://www.apple.com/newsroom/2026/06/apple-aids-app-development-with-new-intelligence-frameworks-and-advanced-tools/), [TechCrunch WWDC 2026 roundup](https://techcrunch.com/2026/06/08/wwdc-2026-everything-announced-on-siri-ai-os-27-apple-intelligence-and-more/), [NPR Siri AI coverage](https://www.npr.org/2026/06/08/nx-s1-5847937/apple-wwdc-2026-siri-ai-tim-cook), [TechTimes App Intents/SiriKit deprecation](https://www.techtimes.com/articles/318005/20260608/wwdc-2026-app-intents-replaces-sirikit-gemini-siri-migration-clock-starts.htm), [ITBrief Xcode 27](https://itbrief.com.au/story/apple-unveils-ai-frameworks-xcode-27-for-developers)*

