Apple used WWDC 2026 to unveil Xcode 27, and one feature reaches well beyond Apple's own editor. Xcode 27 ships seven official Agent Skills, and a single command exports them into the standard ~/.agents/ directory that Claude, Codex, and Cursor already read. The developer beta went live on June 8, 2026, so anyone on the Apple Developer Program can try the workflow today.
What Happened
Agent Skills are instruction sets that teach an AI coding agent how to handle a specific task, such as modernizing a UIKit app or auditing security settings. Xcode 27 bundles seven of them. As iOS engineer Antoine van der Lee documented in his SwiftLee walkthrough, Xcode now includes an agent CLI with a skills export command. Running xcrun agent skills export ~/.agents/skills drops all seven skills into a folder that many agent IDEs scan automatically, so the same guidance Apple wrote for Xcode becomes available inside third-party tools.
Why It Matters
The portable ~/.agents/ convention is quietly becoming a shared standard for how editors discover agent instructions, and Apple adopting it means vendor-written skills no longer stay locked to one app. That mirrors a broader push toward verifiable, reusable agent instructions seen elsewhere in the ecosystem, including NVIDIA's verified Agent Skills. For creators who bounce between Claude for reasoning and Cursor for edits, it means one consistent set of Swift and UIKit expertise follows you across tools instead of being re-explained in every prompt.
Key Details
The seven skills are uikit-app-modernization, device-interaction, swiftui-whats-new-27, swiftui-specialist, test-modernizer, c-bounds-safety, and audit-xcode-security-settings. Not all of them travel equally well. Knowledge-focused skills like the SwiftUI guidance work in any compatible agent, but device-interaction and the security audit depend on Xcode-specific tooling and will not function outside Apple's editor. The release was part of a wider Xcode 27 update covered in Michael Tsai's announcement roundup, which also detailed on-device code completion that runs on the Neural Engine without sending source to the cloud. A public release is expected in September 2026.
What to Do Next
If you have the Xcode 27 beta installed, open Terminal and run the export command, then restart your agent IDE so it picks up the new skills folder. Verify which skills loaded before relying on them, since the device and security skills will appear but not work outside Xcode. For a step-by-step setup, Paul Hudson's Hacking with Swift guide walks through installing and using agent skills inside Xcode itself before you export them elsewhere.