What problem does it solve? Building single-page application behavior with Svelte and Inertia requires correct use of v3 APIs and Svelte 5 runes syntax; mixing legacy Svelte 4 patterns or plain anchor tags breaks SPA navigation and form handling. ## Core Features & Use Cases - Page Components & Navigation: Create Svelte page components in resources/js/Pages and navigate with <Link>, router.visit, prefetching, and instant visits. - Form Handling: Build forms with the <Form> component using {#snippet} slots, or the useForm hook for programmatic control with validation errors and processing states. - Inertia v3 Features: Implement deferred props, optimistic updates, polling with usePoll, WhenVisible lazy loading, InfiniteScroll, layout props via setLayoutProps, and plain HTTP requests via useHttp. - Use Case: When adding a dashboard page to a Laravel + Inertia + Svelte app, generate a Svelte 5 component that polls stats every 5 seconds and defers non-critical props with skeleton loading states. ## Quick Start Create an Inertia Svelte 5 page component with a form that posts to /users and shows validation errors.