SvelteKit is the full-stack framework for Svelte, giving you file-based routing, SSR, SSG, and form actions with progressive enhancement out of the box. Drop files in src/routes/ and you get automatic routes, use +page.server.ts for server-only data fetching with direct database access, and +page.ts when you need universal loads. The type safety is excellent with generated $types, and adapters let you deploy anywhere from Vercel to Cloudflare Workers. The streaming promise pattern is clever: return immediate data alongside async promises and SvelteKit handles the loading states. If you're building anything from a marketing site to a full app with forms and APIs, this gives you the flexibility to do SSR, SSG, or SPA mode per route.
npx skills add https://github.com/bobmatnyc/claude-mpm-skills --skill sveltekit