What problem does it solve? NativePHP Mobile v4 apps often contain legacy web-view screens built with Livewire, Inertia, or Blade that render inside a web view instead of using native SwiftUI/Compose UI. Migrating these screens manually is error-prone because every HTML element, Livewire directive, and JavaScript device call has a different native equivalent. ## Core Features & Use Cases - Incremental Migration Strategy: Inventories web routes, Livewire components, and Inertia pages, then converts one screen at a time while web and native stacks coexist via exitToWeb() bridging. - Mapping Tables: Provides Livewire-to-SuperNative and HTML-to-EDGE conversion tables covering routing, data binding, events, chrome elements, icons, and fonts. - Device API Conversion: Replaces JavaScript #nativephp imports with PHP facades and #[On] event listeners that auto-teardown on unmount. - Use Case: A NativePHP app has a Livewire settings page and an Inertia item list rendering in the web view; this Skill converts them into NativeComponent classes registered with Route::native(), complete with native top bars, lists, and tests. ## Quick Start Ask the assistant to convert the Livewire or Inertia screens in your NativePHP app into native SuperNative screens one at a time.