What problem does it solve? NativePHP Mobile v4 renders fully native UI (SwiftUI/Compose) from PHP, but many apps still run legacy web-view screens built with Livewire, Inertia, or Blade. This Skill migrates those screens incrementally into native NativeComponent classes without a big-bang rewrite. ## 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() and native routes. - Mapping Tables: Provides Livewire-to-SuperNative and HTML-to-EDGE conversion tables covering components, events, navigation, chrome elements, fonts, and icons. - Device API Conversion: Replaces JavaScript #nativephp device calls with PHP facades and #[On] event listeners that auto-teardown on unmount. - Use Case: A NativePHP app has a Livewire settings screen and an Inertia item list rendering in the web view. The Skill scaffolds native screens with native:make, registers Route::native() routes, converts templates to EDGE elements, and generates tests with native:make-test. ## Quick Start Convert my Livewire item list screen into a native NativeComponent screen and register it with Route::native.