What problem does it solve? Exposing app actions and content to iOS system surfaces like Shortcuts, Siri, Spotlight, and widgets requires careful design decisions about which intents, entities, and shortcuts to ship, and mistakes lead to bloated or unusable integrations. ## Core Features & Use Cases - Intent Design Guidance: Choose the first high-value actions, decide between inline and open-app intents, and plan a clean runtime handoff into the main app scene. - Entity and Query Modeling: Define narrow AppEntity types, EntityQuery implementations, AppEnum choices, and dependent queries for widget configuration. - Swift Code Templates: Copy and adapt ready-made templates for open-app handoff intents, inline action intents, widget configuration intents, and AppShortcutsProvider entries. - Use Case: You want your task app to support "Create a task" from Siri and Shortcuts. Use this Skill to design a small intent surface, implement the inline action intent, and register shortcut phrases. ## Quick Start Use the ios-app-intents skill to design the first App Intents surface for my iOS app, including one open-app intent, one inline action intent, and an AppShortcutsProvider.