What problem does it solve? SwiftUI code that compiles can still use deprecated or stale APIs, and documentation alone does not reveal how shipping macOS apps actually write modern SwiftUI. This Skill detects deprecated modifiers, types, and property wrappers in existing code and replaces them with verified current idioms. ## Core Features & Use Cases - Deprecation Verification: Checks each SwiftUI symbol against a catalog of 1,857 real macOS apps via the swiftui-ctx deprecated command, returning the replacement API and notes. - Evidence-Based Migration: Looks up the modern call shape with swiftui-ctx lookup and real code examples pinned to GitHub permalinks before rewriting. - Modernization Beyond Deprecation: Upgrades stale patterns like ObservableObject to @Observable and NavigationView to NavigationStack/NavigationSplitView. - Use Case: Given a legacy macOS settings view using .foregroundColor, NavigationView, and presentationMode, the Skill flags each deprecated API, reports old-to-new mappings with evidence, and applies the migrations. ## Quick Start Ask the agent to modernize the deprecated SwiftUI APIs in your macOS view file using verified production patterns.