This gets Next.js running on Bun instead of Node.js, which means faster dependency installs and dev server startup. It covers the essentials: using the `--bun` flag to force Bun's runtime, accessing Bun-specific APIs like `bun:sqlite` in server components and API routes, and working around the fact that Vercel's edge runtime still uses V8. The security section on blocking post-install scripts and setting cooldown periods for new packages is more thorough than most quickstarts bother with. If you're already bought into Bun for speed gains and want to use it with Next.js without fighting the tooling, this walks through the setup and gotchas.
npx skills add https://github.com/secondsky/claude-skills --skill bun-nextjs