What problem does it solve? Setting up an iOS App Clip for an Expo app involves many error-prone manual steps: creating the native target, configuring associated domains, hosting an apple-app-site-association file, registering bundle IDs with Apple, and submitting to TestFlight. This Skill walks through the entire pipeline so the Clip can be invoked from a URL on your domain. ## Core Features & Use Cases - App Clip Target Creation: Uses bun create target clip with @bacons/apple-targets to scaffold the Clip in targets/clip/ with its own config plugin and Info.plist. - AASA and Associated Domains: Configures applinks: and appclips: entitlements, generates and hosts the apple-app-site-association file via EAS Hosting, and adds the Smart App Banner meta tag. - App Store and TestFlight Setup: Registers bundle IDs, syncs capabilities, configures App Clip metadata in store.config.json, and submits builds with bunx testflight. - Use Case: You have an Expo app and want users to launch a lightweight Clip from a URL on your website without installing the full app, including an SKOverlay prompt to install the parent app from within the Clip. ## Quick Start Ask the assistant to add an iOS App Clip target to your Expo app and configure the associated domain and AASA file for your website.