What problem does it solve? SwiftUI covers most macOS UI needs, but some native behaviors—NSWindow access, menu validation, open/save panels, first-responder control, and AppKit-specific drag and drop—require dropping into AppKit. This Skill guides you to the smallest possible bridge so SwiftUI remains the source of truth while AppKit handles the imperative edge. ## Core Features & Use Cases - Bridge Selection Guidance: Decide between pure SwiftUI, NSViewRepresentable, NSViewControllerRepresentable, or direct AppKit hooks based on the exact capability gap. - Reference Patterns: Covers representable wrappers with coordinators, window and panel access, responder-chain and menu validation, and pasteboard/drag-drop edges. - Use Case: You need an NSTextView with delegate callbacks inside a SwiftUI screen. The Skill provides a complete NSViewRepresentable skeleton with a Coordinator that syncs text via bindings without infinite update loops. ## Quick Start Ask the assistant to wrap an NSTextView in a SwiftUI view using the smallest AppKit bridge with a coordinator for delegate callbacks.