A solid reference for SwiftUI's native WebKit APIs introduced in iOS 26 and later. Use this when you need to embed web content in a modern SwiftUI app, whether that's rendering article detail views, loading bundled HTML documentation, or running JavaScript against page content. It covers WebView and WebPage basics, navigation policy interception, observable page state, and custom URL scheme handlers. The guidance correctly steers you toward SFSafariViewController for simple external sites and ASWebAuthenticationSession for OAuth, which is the right call. One gap: it doesn't fully explain how to replace WKScriptMessageHandler for JavaScript to native messaging, so you may need a workaround pattern if your use case depends on bidirectional communication.
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill swiftui-webkit