What problem does it solve? Adopting Partial Prefetching in a Next.js app requires auditing every <Link prefetch={true}> call, opting routes in with export const prefetch = 'partial', enabling the partialPrefetching flag, and clearing dev-overlay insights — a multi-step migration that is easy to get wrong or leave half-finished. ## Core Features & Use Cases - Link Prefetch Audit: Enumerates <Link prefetch={true}> and imperative router.prefetch() call sites across the source tree and adopts each destination route with the prefetch = 'partial' segment config. - Guided Flag Rollout: Enables partialPrefetching: true in next.config.ts and strips redundant route exports using the official remove-partial-prefetch codemod. - Insight Sweep & Verification: Drives the running app in a browser to clear instant-link-prefetch-partial and instant-shell-url-data insights, then validates shared App Shell behavior against a production next build/next start run. - Use Case: A team on Next.js 16.3 with Cache Components enabled wants instant navigations; the skill walks their app route by route, fixes URL-data reads with <Suspense> boundaries, and hands back a verified production demo. ## Quick Start Ask the AI to adopt Partial Prefetching in your Next.js app and resolve every prefetch insight the dev overlay reports.