What problem does it solve? Opening a URL from an email or browser should take users directly to the right screen in your app, but wiring Android App Links, iOS Universal Links, and Compose Navigation deep links across a Kotlin Multiplatform codebase is error-prone and hard to test. ## Core Features & Use Cases - Shared DeepLink parser in commonMain: Define a DeepLink sealed class and a pure, unit-testable DeepLinkParser that maps URLs to typed routes without platform dependencies. - Platform entry-point wiring: AndroidManifest intent filters with autoVerify, Activity intent and onNewIntent handling, plus iOS NSUserActivity and openURL handlers bridged to shared Kotlin code. - Server verification files: Templates for assetlinks.json (Digital Asset Links) and apple-app-site-association (AASA) hosted at /.well-known/. - Use Case: A shopping app needs https://www.example.com/products/abc-123 to open the product detail screen on both Android and iOS, with a myapp:// custom scheme fallback and unit tests covering the URL parsing logic. ## Quick Start Ask the agent to implement deep linking for your KMP app so that product and order URLs open the corresponding screens on Android and iOS.