Next.js 16.3: Instant Navigations and Agent DevTools Are Here Vercel released Next.js 16.3 in preview, introducing per-route navigation modes (Stream, Cache, Block) to address sluggish routes and partial prefetching to reduce redundant network requests. The update also adds compilation tools for AI coding agents, enabling them to check TypeScript errors in seconds instead of running a full build. The release targets developer complaints about navigation latency and agent inefficiency, with all features opt-in per route. Next.js shipped 16.3 in preview on Friday and it targets two complaints that have been sitting in developer forums for a year: routes that feel sluggish despite a fast first load, and coding agents forced to run a full next build just to check whether the TypeScript compiles. Neither problem is exotic. Both fixes are opt-in, per-route, with no global toggle. Vercel appears to have learned something from the App Router era. The Navigation Problem and What 16.3 Does About It Next.js App Router navigations have always had a latency gap compared to single-page apps. The reason is architectural: the framework waits for the server to finish rendering before handing anything to the browser. On a fast route that is imperceptible. On a route with a slow database call, users see nothing for several hundred milliseconds. 16.3 introduces three per-route navigation modes: Stream — wrap slow sections in