What problem does it solve? SwiftUI-to-AppKit bridges in macOS apps often compile but silently misbehave: representables missing updateNSView go stale, bindings without Coordinators never receive edits, and first-responder or scene-chrome behavior breaks under NSHostingView. This Skill systematically detects those wiring defects in existing macOS SwiftUI projects. ## Core Features & Use Cases - Ten-rule defect index: Detects missing updateNSView, dead Coordinator bindings, wrong bridge protocols, missing dismantleNSView cleanup, Swift 6 concurrency races at the Coordinator boundary, and ungated newer bridge APIs. - Hybrid lint engine: Combines tier-1 grep tells with tier-2 ast-grep structural rules that prove the absence of required members across a type, emitting unified JSON and SARIF reports. - Corpus-grounded fixes: Every finding's correct shape is backed by real code from 1,857 shipping macOS apps via the swiftui-ctx CLI, plus Apple documentation verified through Sosumi. - Use Case: Point the audit at a macOS SwiftUI project containing NSViewRepresentable wrappers; it locates a representable missing updateNSView, confirms it by reading the full type, and writes a flagged finding with the canonical corrected pattern and a GitHub permalink. ## Quick Start Audit my macOS SwiftUI project for AppKit interop defects and write the findings to the swiftui-audits/appkit-interop folder.