The beta version of Xcode 27 has introduced "agent skills" in the SKILL.md format, which provide AI coding agents with specialized instructions and up-to-date SDK knowledge to improve code generation accuracy.

What Happened
Apple has implemented support for agent skills in Xcode 27 (Beta), realized as SKILL.md text files. Currently, 10 ready-to-use skills are provided, including expert instructions for SwiftUI, UIKit, and localization. These files allow AI agents to utilize current API data, such as the transition from @State to macros. Developers can export these skills using the command xcrun agent skills export --output-dir.
Context
The "knowledge cutoff" problem in Large Language Models (LLMs) often leads to suggestions of outdated or incorrect code when working with the latest APIs. The SKILL.md format uses a prose-based codemods approach—passing context and instructions through natural text—which allows AI to work with current tools without the need for fine-tuning.
Why It Matters for the Industry
Apple is setting a new standard for how LLMs interact with development tools via text instructions. This paves the way for deep agent integration into IDEs and standardizes how SDK context is passed to AI systems, which could lead to the formation of a market for specialized "skills" for various frameworks.
Why It Matters for Users
Developers can instantly improve the accuracy of their favorite AI editors or terminal agents, such as Claude Code, by transferring Xcode's "intelligence" into them. This ensures that third-party assistants will not suggest outdated solutions for new versions of iOS and macOS.
Sources
Author
Look at AI, Editorial Team
