Guide · 8 min read
Apple App Intents and Siri Discovery: How to Reach Users Outside the App Store in 2026
Apple's App Store listing — screenshots, icon, subtitle — is one discovery channel. Since iOS 16, a second one has been sitting largely unused by indie developers: App Intents, the framework that makes your app visible through Siri, Spotlight search, and the Shortcuts app. WWDC26 expanded this channel significantly with Siri AI, semantic entity indexing, and a new testing framework. Developers who've implemented it report 10–20% increases in organic opens from Spotlight and Siri surfaces — without touching the App Store listing at all. Here's what it does and how to build the minimum that unlocks all three surfaces.
App Intents is a second discovery channel — not a Siri automation side project
App Intents is the framework Apple built for declaring what your app can do to the operating system, and since iOS 16 it has been the interface between your app and Siri, Spotlight search, and the Shortcuts app. Most developers treat it as an automation feature for power users who build custom Shortcuts workflows. That framing undersells it: the primary value in 2026 is discovery — surfaces that your App Store listing never reaches.
The asymmetry is significant. App Store search requires a user to open the store, type a query, and scroll a results grid. Spotlight operates from the home screen and Lock Screen — before the store is opened. Siri handles voice and typed queries across the entire OS. The Shortcuts app puts your app in front of iOS power users actively cataloguing their toolset. These surfaces reach users with existing intent who simply haven't found your app yet. App Intents is the bridge.
What WWDC26 changed is the semantic scale of the connection. Apple rebuilt Siri's understanding of app capabilities using on-device language model inference, so the link between a user's intent and your declared app actions is now semantic, not lexical. A journaling app declaring a 'Write today's entry' intent now surfaces for 'add to my journal' queries it never explicitly targeted. This mirrors the same shift in App Store keyword matching covered in the App Store semantic search guide — except on a discovery surface the listing never reaches.
The 3 surfaces App Intents unlocks: Siri, Spotlight, and Shortcuts
Siri is the highest-reach surface — every iPhone and iPad user has access to it, and Apple Intelligence-powered queries in iOS 26 increasingly route through App Intents rather than App Store search. When a user asks Siri to 'start my morning run', Siri inspects declared intents from installed fitness apps and surfaces the one that can execute it. Your app's AppShortcutsProvider defines which intents Siri offers proactively. Without one, you are invisible to voice-driven discovery entirely.
Spotlight is the most underestimated surface. Spotlight's semantic index now includes content from apps that have declared AppEntity types — searchable objects like tasks, notes, saved workouts, or recipes. When a user searches from the home screen, their search surfaces in-app content alongside web results and contacts. A task manager that declares its tasks as entities will show individual task results in Spotlight for users who never open the app to search. This is direct content access from outside the app.
The Shortcuts app targets a narrower but high-value user profile: the iOS power user explicitly building automation workflows. Declaring intents in the Shortcuts editor makes your app a composable building block in those flows, which drives organic sharing of use cases across Reddit, YouTube, and developer communities. Published 'best iOS Shortcuts' content regularly generates install spikes for the apps featured — traffic with no acquisition cost that compounds each time the workflow is reshared.
Minimum viable implementation: one AppShortcutsProvider, three intents, one AppEntity
The minimum implementation that unlocks Siri, Spotlight, and Shortcuts coverage consists of three components: an AppShortcutsProvider with three to five declared intents, one AppEntity per searchable content type, and natural-language phrases for Siri matching. An indie dev building this from scratch against a clean internal model layer can complete it in four to eight hours — it does not require redesigning app architecture, because App Intents wraps your existing model layer rather than replacing it.
The three intents worth starting with cover the highest-volume user interactions: open a specific piece of content ('Open today's habit list'), create a new record ('Add a task'), and retrieve existing content ('Find my recipe for pasta'). These three patterns are what Apple's system prioritizes when building proactive Siri suggestions. The system learns which intents users trigger most and increases their proactive surface weight automatically — starting with your highest-volume actions gives the model the fastest and most useful training signal.
WWDC26 introduced EntityCollection for batch entity management, which significantly improves Spotlight indexing performance for apps with large data sets. It also added a dedicated App Intents Testing framework that validates Siri, Shortcuts, and Spotlight integration through real system pathways — meaning you can add this coverage to a CI pipeline and catch regressions before they ship. Apple's WWDC26 App Intents session is the authoritative reference for sample code and implementation specifics.
RelevantEntities and Siri AI: the WWDC26 additions that enable proactive discovery
RelevantEntities is the most significant new API from WWDC26: it lets your app hint to the system which content objects are relevant in the current context — time of day, user location, recent activity, calendar data. A commute app can mark today's saved route as high-relevance at 7:45am. A habit tracker can surface the morning check-in intent as the user picks up their phone. These hints drive proactive Siri suggestions and Lock Screen widget surfaces without any user search — push-based discovery triggered by context, not by the user hunting.
Siri AI is the second major addition: Apple's on-device language model for action resolution, now directly connected to App Intents. When a user describes a task to Siri, the model maps their natural language to your declared intents without requiring you to enumerate every phrase variant. The phrases you supply in AppShortcutsProvider are seed examples for the model — semantic inference handles the natural language space around them automatically. An intent declared as 'Log a meal' handles 'add what I ate', 'record dinner', and 'track my lunch' without additional development work.
Together, RelevantEntities and Siri AI change App Intents from a search-response feature into an ambient discovery layer. Apps that implement early accumulate system-indexed interaction history — the model learns which intents their users actually trigger — creating a compounding discovery advantage over apps that add it later. This explains the 10–20% organic lift reported by developers who implemented before the WWDC26 semantic expansion: each user interaction strengthens the signal that grows further discovery.
What App Intents cannot do: the two limits worth knowing before you build
App Intents does not improve App Store search ranking. The two systems run on separate indices — App Store search is ranked by Apple's metadata relevance model applied to your listing fields, while App Intents are indexed by the system's action graph for Siri and Spotlight. Optimizing your intents has zero effect on where you appear in App Store search results for any keyword. The lever for search ranking is your title, subtitle, keyword field, and description. The App Store subtitle and promotional text guide and the free ASO keyword research guide cover that system in full.
App Intents also requires the app to be installed for Siri execution and Spotlight content indexing to function. Pre-install, the channel is limited to Siri app recommendations — Siri can suggest installing your app if the user's query matches an intent category your app has declared and they have no competing app installed. This is real but supplementary. The higher-value use case is post-install re-engagement: Siri and Spotlight making it frictionless to access your app's content from anywhere on iOS, improving session frequency without any in-app redesign. The correct sequencing is to get the App Store listing converting well first, then add App Intents as the retention and secondary-discovery layer that amplifies installs already happening.
App Intents is the highest-return underimplemented investment on iOS
One afternoon of implementation unlocks three discovery surfaces that run independently of App Store ranking, review velocity, and marketing spend. The minimum viable integration — an AppShortcutsProvider, three intents, one AppEntity — requires no architecture changes and no ongoing maintenance once the system's indexed interaction history starts accumulating.
WWDC26's Siri AI and RelevantEntities additions make this the right time to build if you haven't yet. Apps implementing now build interaction history that compounds discovery over months and years. The screenshots that convert users arriving through Siri and Spotlight are the same ones that convert App Store search users — they just need to communicate immediate value clearly to someone who landed on your product page cold.
Build App Store screenshots that convert every discovery source →
Frequently asked questions
what is the apple app intents framework
App Intents is Apple's Swift framework for declaring your app's actions and content to the operating system. It powers integration with Siri, Spotlight search, the Shortcuts app, and Widgets on iOS, iPadOS, and macOS. By declaring intents — discrete actions your app can perform — and entities — searchable content objects — you make your app visible and actionable from system surfaces outside the App Store. Introduced in iOS 16, it received significant expansion at WWDC26 with Siri AI, RelevantEntities, and a dedicated testing framework.
do app intents help with app store search ranking
No. App Intents and App Store search run on completely separate systems. App Store search ranking is determined by Apple's metadata relevance model applied to your listing fields — title, subtitle, keyword field, and description. App Intents are indexed by the system's action graph for Siri and Spotlight, which is a different infrastructure with no connection to App Store keyword ranking. Implementing App Intents will not move your position in App Store search results.
how long does it take to implement app intents for an indie app
For an app with a clean internal model layer, the minimum integration — an AppShortcutsProvider with three intents and one AppEntity per searchable content type — takes four to eight hours. This assumes familiarity with Swift and an existing data model. WWDC26 added a dedicated App Intents Testing framework that makes it possible to add Siri and Spotlight validation to a CI pipeline. Apple's WWDC26 App Intents session includes complete sample code that accelerates the initial setup significantly.
what is spotlight app discovery and how does it work
Spotlight on iOS surfaces app content from the home screen and Lock Screen search. When an app declares AppEntity types — searchable objects like tasks, notes, recipes, or workouts — Spotlight indexes that content and shows it in search results alongside web results and contacts. A user searching from the home screen can see and open specific items inside an installed app without opening the app first. Spotlight discovery is post-install: it improves engagement and session frequency for existing users rather than acquiring new installs.
can siri recommend apps that aren't installed yet
Yes, in a limited way. Siri can suggest installing an app if the user's query matches an intent category the app has declared and the user has no competing app installed that covers the same intent. This is a real but lower-volume path compared to post-install discovery. The majority of App Intents value comes from Siri and Spotlight surfacing your app's content and actions to existing users who would otherwise have to open the app manually — improving re-engagement rather than new-user acquisition.