What problem does it solve? Developers running SvelteKit on Node.js miss out on Bun's faster installs, builds, and native APIs like bun:sqlite, and configuring the Bun adapter, server hooks, and deployment correctly requires scattered documentation. ## Core Features & Use Cases - Bun Adapter Setup: Configure svelte-adapter-bun with precompression, dynamic origin, and environment prefixes for production builds. - Bun-Native Server Code: Use bun:sqlite in load functions, form actions, and API routes, plus Bun.file and Bun.write for file operations. - Svelte 5 Patterns: Implement runes-based components ($props, $state, $derived) wired to server load functions and form actions. - Deployment Guidance: Build and run with Bun directly or package into a multi-stage Docker image based on oven/bun. - Use Case: Scaffold a SvelteKit app with bunx sv create, add svelte-adapter-bun, build a CRUD page backed by bun:sqlite, and deploy it as a Docker container serving on port 3000. ## Quick Start Ask the assistant to scaffold a new SvelteKit project with Bun, configure svelte-adapter-bun, and create a users page backed by a bun:sqlite database.