
WWDC 2026 opens Monday with a consumer keynote at 10 AM PDT. That’s not the session you should schedule your morning around. The Platforms State of the Union at 1 PM PDT is where Apple shows its developer hand — the APIs, the deprecations, the migration timelines, the betas that land same-day. Here’s what the research and rumor mill point to, and what you should actually do when the dust settles.
App Intents Is Now Your App’s AI Surface Area
This is the most consequential change coming, and it’s one many developers have underestimated. iOS 27 is expected to ship a multi-model AI backend — users will be able to route Apple Intelligence requests through Apple’s own on-device model, Google Gemini, Anthropic Claude, or OpenAI ChatGPT. The developer angle matters most here: App Intents is the layer that makes your app callable by any of those models.
App Intents 2.0 is widely expected at WWDC 2026, with streaming responses, conversational follow-ups, and richer entity types. If your app doesn’t expose its core actions as intents, it becomes invisible not just to Siri but to every AI assistant on iPhone. That’s a category problem, not a feature gap.
There’s one open question Apple needs to answer Monday: will developers eventually be charged for deep Siri integration? Some large app companies have held off on App Intents adoption specifically because Apple hasn’t ruled it out. Clarification in the State of the Union would unblock a lot of adoption.
Foundation Models: What’s Likely Expanding
Apple shipped the Foundation Models framework with iOS 26 last year — a 3B parameter on-device LLM accessible with three lines of Swift, no API key, no network dependency, no per-token cost, and no privacy tradeoff. For WWDC 2026, a new Apple GenAI developer subdomain is reportedly going live alongside the keynote, suggesting expanded API surface.
import FoundationModels
let session = LanguageModelSession()
let response = try await session.respond(to: "Summarize this: \(userText)")
The existing capabilities are already solid: guided generation (the model returns typed Swift structs directly), tool calling, and LoRA adapter training. The adapters story is underrated. You can fine-tune the on-device model for your domain using Apple’s Python toolkit, ship the adapter (~160 MB) as an on-demand asset, and get domain expertise without paying for server-side inference.
The honest limitation: 3B parameters won’t replace GPT-5 for complex reasoning. Apple’s hybrid answer is Private Cloud Compute — heavier requests route to Apple’s servers, data is never retained. iOS 27 will push more developer controls over that boundary.
Xcode Already Has Agentic Coding — What’s Next
Xcode 26.3, released in February, shipped native MCP support. The mcpbridge binary exposes 20 tools — file system, build system, Simulator, SwiftUI previews, the debugger, and a semantic search index over Apple’s entire documentation corpus and WWDC transcripts (Apple calls it “Squirrel MLX,” built on MLX for Apple Silicon). Claude Code, Cursor, and OpenAI Codex work out of the box. Agents can iterate build-fix cycles autonomously.
That’s already better MCP coverage than most non-Apple IDEs shipped at launch. What WWDC 2026 likely adds is an expanded tool surface — more Instruments hooks, more simulator controls — plus build performance and SwiftUI preview improvements in whatever Xcode version ships with the developer beta.
Swift 6.3 Is Out — Watch the Trajectory
Swift 6.3 shipped in March 2026 with full concurrency safety by default. Code runs single-threaded unless you explicitly opt into concurrency, which eliminates a whole class of data race bugs at compile time. The macro system improved, and cross-platform support (Linux, Windows) got meaningful attention.
WWDC 2026 isn’t expected to ship “Swift 7” as a named release — the community has been vocal about preferring a stability cycle over feature rush. The State of the Union will show the roadmap: where Swift’s macro system and Swift Testing go next, plus the continued cross-platform push. Embedded Swift for microcontrollers is a quiet story worth watching.
What to Do Monday
Specific actions worth taking when WWDC content lands:
- Watch the State of the Union (1 PM PDT), not just the keynote. New APIs and deprecation timelines come from the developer session.
- Audit your App Intents coverage. Map your app’s core actions and check what’s missing. Streaming support in App Intents 2.0 would lower the integration cost significantly.
- Download the developer beta same day. Run your app. Check for deprecation warnings in the release notes.
- Check the Foundation Models session notes. New API surfaces typically come with getting-started code directly in the WWDC video.
- Review any custom layout code for foldable iPhone APIs — this is the first cycle Apple will describe the new form factor APIs to developers.
The consumer story of WWDC 2026 is Siri-as-chatbot and a new iPhone form factor. The developer story is quieter and more durable: App Intents as the universal AI callable surface, Foundation Models as free on-device inference, and Xcode as an agent-native IDE. Monday’s betas start the clock on how fast you need to move.













