In my app, I adopt ‘App Intents’ and ‘App Entities’ for various items and actions in my app. These work in the Shortcuts app, and users can use Find Intents to lookup information or use the intents to act up on them, even though they don’t map on to any of the specific App ‘Schemes’ and ‘Domains’ that are listed. If I'm using just App Entities and Intents on their own, would these participate with the new Siri AI, without any additional work? For example, in my app, I have entities like Contacts, Tags, and ‘Visit Logs’. I have intents for 'create tag’, ‘add tags to a contact’, add a ‘Log’ to a 'contact' etc. These are specified in the AppShortcutsProvider list, but I have more than 10 intents. How would these work with the new Apple Intelligence and Siri? Or does Siri integration require AppSchema adoption?
If I'm using just App Entities and Intents on their own, would these participate with the new Siri AI, without any additional work?... These are specified in the AppShortcutsProvider list, but I have more than 10 intents.
You are on the right track here. AppShortcutsProvider will allow you to specify up to 10 intents to be automatically available to Siri. This is the best way to integrate your app with Siri when your intents do not overlap with an App schema domain.
For the full list of App schema domains, please refer to the documentation.
— james