[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-microfrontends":3,"mdc-tg8scg-key":39,"related-org-vercel-microfrontends":586,"related-repo-vercel-microfrontends":761},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":28,"repoUrl":29,"updatedAt":30,"license":31,"forks":32,"topics":33,"repo":34,"sourceUrl":37,"mdContent":38},"microfrontends","build and deploy microfrontends on Vercel","Guide for building, configuring, and deploying microfrontends on Vercel. Use this skill when the user mentions microfrontends, multi-zones, splitting an app across teams, independent deployments, cross-app routing, incremental migration, composing multiple frontends under one domain, microfrontends.json, @vercel\u002Fmicrofrontends, the microfrontends local proxy, or path-based routing between Vercel projects. Also use when the user asks about shared layouts across projects, navigation between microfrontends, fallback environments, asset prefixes, or feature flag controlled routing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel","Vercel","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel.png",[12,15,16,19,22,25],{"name":13,"slug":4,"type":14},"Microfrontends","tag",{"name":9,"slug":8,"type":14},{"name":17,"slug":18,"type":14},"Architecture","architecture",{"name":20,"slug":21,"type":14},"Deployment","deployment",{"name":23,"slug":24,"type":14},"Web Development","web-development",{"name":26,"slug":27,"type":14},"Frontend","frontend",226,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fvercel-plugin","2026-06-09T07:36:45.890307",null,36,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"Comprehensive Vercel ecosystem plugin — relational knowledge graph, skills for every major product, specialized agents, and Vercel conventions. Turns any AI agent into a Vercel expert.","https:\u002F\u002Fgithub.com\u002Fvercel\u002Fvercel-plugin\u002Ftree\u002FHEAD\u002Fskills\u002Fmicrofrontends","---\nname: microfrontends\ndescription: Guide for building, configuring, and deploying microfrontends on Vercel. Use this skill when the user mentions microfrontends, multi-zones, splitting an app across teams, independent deployments, cross-app routing, incremental migration, composing multiple frontends under one domain, microfrontends.json, @vercel\u002Fmicrofrontends, the microfrontends local proxy, or path-based routing between Vercel projects. Also use when the user asks about shared layouts across projects, navigation between microfrontends, fallback environments, asset prefixes, or feature flag controlled routing.\nmetadata:\n  priority: 7\n  docs:\n    - \"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmicrofrontends\"\n  pathPatterns:\n    - 'microfrontends.json'\n    - 'microfrontends.jsonc'\n    - 'apps\u002F*\u002Fmicrofrontends.json'\n    - 'apps\u002F*\u002Fmicrofrontends.jsonc'\n  bashPatterns:\n    - '\\bvercel\\s+microfrontends\\b'\n    - '\\bvercel\\s+mf\\b'\n    - '\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b'\n    - '\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b'\n    - '\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b'\n    - '\\byarn\\s+add\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b'\n  importPatterns:\n    - '@vercel\u002Fmicrofrontends'\nretrieval:\n  aliases:\n    - microfrontends\n    - multi-zones\n    - multi zones\n    - mfe\n    - microfrontend routing\n    - cross-zone navigation\n  intents:\n    - split app into microfrontends\n    - set up microfrontends\n    - configure microfrontends.json\n    - add path routing between projects\n    - share layout across microfrontends\n  entities:\n    - microfrontends.json\n    - \"@vercel\u002Fmicrofrontends\"\n    - default app\n    - child app\n    - asset prefix\n    - microfrontends group\nchainTo:\n  -\n    pattern: 'runMicrofrontendsMiddleware|flag.*microfrontend|microfrontend.*flag'\n    targetSkill: routing-middleware\n    message: 'Flag-controlled microfrontend routing requires middleware in the default app — loading Routing Middleware guidance.'\n\n---\n\n# Vercel Microfrontends\nSplit a large application into independently deployable units that render as one cohesive app. Vercel handles routing on its global network using `microfrontends.json`.\n\n**Core concepts:** default app (has `microfrontends.json`, serves unmatched requests) · child apps (have `routing` path patterns) · asset prefix (prevents static-asset collisions) · independent deployments.\n\n**Frameworks:** Next.js (App Router + Pages Router), SvelteKit, React Router, Vite — all via `@vercel\u002Fmicrofrontends`.\n\n**CLI (`vercel microfrontends` \u002F `vercel mf`):**\n- `create-group` — create a new group; interactive by default, or fully non-interactive with `--non-interactive` (options: `--name`, `--project` (repeatable), `--default-app`, `--default-route`, `--project-default-route` (repeatable, format: `\u003Cproject>=\u003Croute>`, required for each non-default project in non-interactive mode), `--yes` to skip confirmation prompt); note: `--non-interactive` is blocked if adding the projects would exceed the free tier limit — the user must confirm billing changes interactively\n- `add-to-group` — add the current project to an existing group; requires interactive terminal (options: `--group`, `--default-route`)\n- `remove-from-group` — remove the current project from its group; requires interactive terminal (option: `--yes` skips project-link prompt only)\n- `delete-group` — delete a group and all its settings, irreversible; requires interactive terminal (option: `--group` to pre-select group)\n- `inspect-group` — retrieve group metadata (project names, frameworks, git repos, root dirs); useful for automating setup (options: `--group`, `--format=json`, `--config-file-name`)\n- `pull` — pull remote `microfrontends.json` for local development (option: `--dpl`)\n- `microfrontends proxy` — local dev proxy · `microfrontends port` — print auto-assigned port\n\n## Finding Detailed Information\n\nThis skill includes detailed reference docs in the `references\u002F` directory. **Do not read all references upfront.** Instead, search or grep the relevant file when the user asks about a specific topic:\n\n| Topic | Reference file |\n|---|---|\n| Getting started, quickstart, framework setup, `microfrontends.json` schema, fields, naming, examples | `references\u002Fconfiguration.md` |\n| Path expressions, asset prefixes, flag-controlled routing, middleware | `references\u002Fpath-routing.md` |\n| Local proxy setup, polyrepo config, Turborepo, ports, deployment protection | `references\u002Flocal-development.md` |\n| Inspecting groups (`inspect-group`), adding\u002Fremoving projects, fallback environments, navigation, observability | `references\u002Fmanaging-microfrontends.md` |\n| Testing utilities (`validateMiddlewareConfig`, `validateRouting`, etc.), debug headers, common issues | `references\u002Ftroubleshooting.md` |\n| Deployment protection, Vercel Firewall, WAF rules for microfrontends | `references\u002Fsecurity.md` |\n\nWhen the user asks about a specific topic, use grep or search over the relevant reference file to find the answer without loading all references into context.\n",{"data":40,"body":82},{"name":4,"description":6,"metadata":41,"retrieval":59,"chainTo":77},{"priority":42,"docs":43,"pathPatterns":45,"bashPatterns":50,"importPatterns":57},7,[44],"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fmicrofrontends",[46,47,48,49],"microfrontends.json","microfrontends.jsonc","apps\u002F*\u002Fmicrofrontends.json","apps\u002F*\u002Fmicrofrontends.jsonc",[51,52,53,54,55,56],"\\bvercel\\s+microfrontends\\b","\\bvercel\\s+mf\\b","\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b","\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b","\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b","\\byarn\\s+add\\s+[^\\n]*@vercel\u002Fmicrofrontends\\b",[58],"@vercel\u002Fmicrofrontends",{"aliases":60,"intents":66,"entities":72},[4,61,62,63,64,65],"multi-zones","multi zones","mfe","microfrontend routing","cross-zone navigation",[67,68,69,70,71],"split app into microfrontends","set up microfrontends","configure microfrontends.json","add path routing between projects","share layout across microfrontends",[46,58,73,74,75,76],"default app","child app","asset prefix","microfrontends group",[78],{"pattern":79,"targetSkill":80,"message":81},"runMicrofrontendsMiddleware|flag.*microfrontend|microfrontend.*flag","routing-middleware","Flag-controlled microfrontend routing requires middleware in the default app — loading Routing Middleware guidance.",{"type":83,"children":84},"root",[85,94,108,134,150,174,395,402,422,581],{"type":86,"tag":87,"props":88,"children":90},"element","h1",{"id":89},"vercel-microfrontends",[91],{"type":92,"value":93},"text","Vercel Microfrontends",{"type":86,"tag":95,"props":96,"children":97},"p",{},[98,100,106],{"type":92,"value":99},"Split a large application into independently deployable units that render as one cohesive app. Vercel handles routing on its global network using ",{"type":86,"tag":101,"props":102,"children":104},"code",{"className":103},[],[105],{"type":92,"value":46},{"type":92,"value":107},".",{"type":86,"tag":95,"props":109,"children":110},{},[111,117,119,124,126,132],{"type":86,"tag":112,"props":113,"children":114},"strong",{},[115],{"type":92,"value":116},"Core concepts:",{"type":92,"value":118}," default app (has ",{"type":86,"tag":101,"props":120,"children":122},{"className":121},[],[123],{"type":92,"value":46},{"type":92,"value":125},", serves unmatched requests) · child apps (have ",{"type":86,"tag":101,"props":127,"children":129},{"className":128},[],[130],{"type":92,"value":131},"routing",{"type":92,"value":133}," path patterns) · asset prefix (prevents static-asset collisions) · independent deployments.",{"type":86,"tag":95,"props":135,"children":136},{},[137,142,144,149],{"type":86,"tag":112,"props":138,"children":139},{},[140],{"type":92,"value":141},"Frameworks:",{"type":92,"value":143}," Next.js (App Router + Pages Router), SvelteKit, React Router, Vite — all via ",{"type":86,"tag":101,"props":145,"children":147},{"className":146},[],[148],{"type":92,"value":58},{"type":92,"value":107},{"type":86,"tag":95,"props":151,"children":152},{},[153],{"type":86,"tag":112,"props":154,"children":155},{},[156,158,164,166,172],{"type":92,"value":157},"CLI (",{"type":86,"tag":101,"props":159,"children":161},{"className":160},[],[162],{"type":92,"value":163},"vercel microfrontends",{"type":92,"value":165}," \u002F ",{"type":86,"tag":101,"props":167,"children":169},{"className":168},[],[170],{"type":92,"value":171},"vercel mf",{"type":92,"value":173},"):",{"type":86,"tag":175,"props":176,"children":177},"ul",{},[178,259,284,302,320,351,376],{"type":86,"tag":179,"props":180,"children":181},"li",{},[182,188,190,196,198,204,206,212,214,220,221,227,228,234,236,242,244,250,252,257],{"type":86,"tag":101,"props":183,"children":185},{"className":184},[],[186],{"type":92,"value":187},"create-group",{"type":92,"value":189}," — create a new group; interactive by default, or fully non-interactive with ",{"type":86,"tag":101,"props":191,"children":193},{"className":192},[],[194],{"type":92,"value":195},"--non-interactive",{"type":92,"value":197}," (options: ",{"type":86,"tag":101,"props":199,"children":201},{"className":200},[],[202],{"type":92,"value":203},"--name",{"type":92,"value":205},", ",{"type":86,"tag":101,"props":207,"children":209},{"className":208},[],[210],{"type":92,"value":211},"--project",{"type":92,"value":213}," (repeatable), ",{"type":86,"tag":101,"props":215,"children":217},{"className":216},[],[218],{"type":92,"value":219},"--default-app",{"type":92,"value":205},{"type":86,"tag":101,"props":222,"children":224},{"className":223},[],[225],{"type":92,"value":226},"--default-route",{"type":92,"value":205},{"type":86,"tag":101,"props":229,"children":231},{"className":230},[],[232],{"type":92,"value":233},"--project-default-route",{"type":92,"value":235}," (repeatable, format: ",{"type":86,"tag":101,"props":237,"children":239},{"className":238},[],[240],{"type":92,"value":241},"\u003Cproject>=\u003Croute>",{"type":92,"value":243},", required for each non-default project in non-interactive mode), ",{"type":86,"tag":101,"props":245,"children":247},{"className":246},[],[248],{"type":92,"value":249},"--yes",{"type":92,"value":251}," to skip confirmation prompt); note: ",{"type":86,"tag":101,"props":253,"children":255},{"className":254},[],[256],{"type":92,"value":195},{"type":92,"value":258}," is blocked if adding the projects would exceed the free tier limit — the user must confirm billing changes interactively",{"type":86,"tag":179,"props":260,"children":261},{},[262,268,270,276,277,282],{"type":86,"tag":101,"props":263,"children":265},{"className":264},[],[266],{"type":92,"value":267},"add-to-group",{"type":92,"value":269}," — add the current project to an existing group; requires interactive terminal (options: ",{"type":86,"tag":101,"props":271,"children":273},{"className":272},[],[274],{"type":92,"value":275},"--group",{"type":92,"value":205},{"type":86,"tag":101,"props":278,"children":280},{"className":279},[],[281],{"type":92,"value":226},{"type":92,"value":283},")",{"type":86,"tag":179,"props":285,"children":286},{},[287,293,295,300],{"type":86,"tag":101,"props":288,"children":290},{"className":289},[],[291],{"type":92,"value":292},"remove-from-group",{"type":92,"value":294}," — remove the current project from its group; requires interactive terminal (option: ",{"type":86,"tag":101,"props":296,"children":298},{"className":297},[],[299],{"type":92,"value":249},{"type":92,"value":301}," skips project-link prompt only)",{"type":86,"tag":179,"props":303,"children":304},{},[305,311,313,318],{"type":86,"tag":101,"props":306,"children":308},{"className":307},[],[309],{"type":92,"value":310},"delete-group",{"type":92,"value":312}," — delete a group and all its settings, irreversible; requires interactive terminal (option: ",{"type":86,"tag":101,"props":314,"children":316},{"className":315},[],[317],{"type":92,"value":275},{"type":92,"value":319}," to pre-select group)",{"type":86,"tag":179,"props":321,"children":322},{},[323,329,331,336,337,343,344,350],{"type":86,"tag":101,"props":324,"children":326},{"className":325},[],[327],{"type":92,"value":328},"inspect-group",{"type":92,"value":330}," — retrieve group metadata (project names, frameworks, git repos, root dirs); useful for automating setup (options: ",{"type":86,"tag":101,"props":332,"children":334},{"className":333},[],[335],{"type":92,"value":275},{"type":92,"value":205},{"type":86,"tag":101,"props":338,"children":340},{"className":339},[],[341],{"type":92,"value":342},"--format=json",{"type":92,"value":205},{"type":86,"tag":101,"props":345,"children":347},{"className":346},[],[348],{"type":92,"value":349},"--config-file-name",{"type":92,"value":283},{"type":86,"tag":179,"props":352,"children":353},{},[354,360,362,367,369,375],{"type":86,"tag":101,"props":355,"children":357},{"className":356},[],[358],{"type":92,"value":359},"pull",{"type":92,"value":361}," — pull remote ",{"type":86,"tag":101,"props":363,"children":365},{"className":364},[],[366],{"type":92,"value":46},{"type":92,"value":368}," for local development (option: ",{"type":86,"tag":101,"props":370,"children":372},{"className":371},[],[373],{"type":92,"value":374},"--dpl",{"type":92,"value":283},{"type":86,"tag":179,"props":377,"children":378},{},[379,385,387,393],{"type":86,"tag":101,"props":380,"children":382},{"className":381},[],[383],{"type":92,"value":384},"microfrontends proxy",{"type":92,"value":386}," — local dev proxy · ",{"type":86,"tag":101,"props":388,"children":390},{"className":389},[],[391],{"type":92,"value":392},"microfrontends port",{"type":92,"value":394}," — print auto-assigned port",{"type":86,"tag":396,"props":397,"children":399},"h2",{"id":398},"finding-detailed-information",[400],{"type":92,"value":401},"Finding Detailed Information",{"type":86,"tag":95,"props":403,"children":404},{},[405,407,413,415,420],{"type":92,"value":406},"This skill includes detailed reference docs in the ",{"type":86,"tag":101,"props":408,"children":410},{"className":409},[],[411],{"type":92,"value":412},"references\u002F",{"type":92,"value":414}," directory. ",{"type":86,"tag":112,"props":416,"children":417},{},[418],{"type":92,"value":419},"Do not read all references upfront.",{"type":92,"value":421}," Instead, search or grep the relevant file when the user asks about a specific topic:",{"type":86,"tag":423,"props":424,"children":425},"table",{},[426,445],{"type":86,"tag":427,"props":428,"children":429},"thead",{},[430],{"type":86,"tag":431,"props":432,"children":433},"tr",{},[434,440],{"type":86,"tag":435,"props":436,"children":437},"th",{},[438],{"type":92,"value":439},"Topic",{"type":86,"tag":435,"props":441,"children":442},{},[443],{"type":92,"value":444},"Reference file",{"type":86,"tag":446,"props":447,"children":448},"tbody",{},[449,474,491,508,532,564],{"type":86,"tag":431,"props":450,"children":451},{},[452,465],{"type":86,"tag":453,"props":454,"children":455},"td",{},[456,458,463],{"type":92,"value":457},"Getting started, quickstart, framework setup, ",{"type":86,"tag":101,"props":459,"children":461},{"className":460},[],[462],{"type":92,"value":46},{"type":92,"value":464}," schema, fields, naming, examples",{"type":86,"tag":453,"props":466,"children":467},{},[468],{"type":86,"tag":101,"props":469,"children":471},{"className":470},[],[472],{"type":92,"value":473},"references\u002Fconfiguration.md",{"type":86,"tag":431,"props":475,"children":476},{},[477,482],{"type":86,"tag":453,"props":478,"children":479},{},[480],{"type":92,"value":481},"Path expressions, asset prefixes, flag-controlled routing, middleware",{"type":86,"tag":453,"props":483,"children":484},{},[485],{"type":86,"tag":101,"props":486,"children":488},{"className":487},[],[489],{"type":92,"value":490},"references\u002Fpath-routing.md",{"type":86,"tag":431,"props":492,"children":493},{},[494,499],{"type":86,"tag":453,"props":495,"children":496},{},[497],{"type":92,"value":498},"Local proxy setup, polyrepo config, Turborepo, ports, deployment protection",{"type":86,"tag":453,"props":500,"children":501},{},[502],{"type":86,"tag":101,"props":503,"children":505},{"className":504},[],[506],{"type":92,"value":507},"references\u002Flocal-development.md",{"type":86,"tag":431,"props":509,"children":510},{},[511,523],{"type":86,"tag":453,"props":512,"children":513},{},[514,516,521],{"type":92,"value":515},"Inspecting groups (",{"type":86,"tag":101,"props":517,"children":519},{"className":518},[],[520],{"type":92,"value":328},{"type":92,"value":522},"), adding\u002Fremoving projects, fallback environments, navigation, observability",{"type":86,"tag":453,"props":524,"children":525},{},[526],{"type":86,"tag":101,"props":527,"children":529},{"className":528},[],[530],{"type":92,"value":531},"references\u002Fmanaging-microfrontends.md",{"type":86,"tag":431,"props":533,"children":534},{},[535,555],{"type":86,"tag":453,"props":536,"children":537},{},[538,540,546,547,553],{"type":92,"value":539},"Testing utilities (",{"type":86,"tag":101,"props":541,"children":543},{"className":542},[],[544],{"type":92,"value":545},"validateMiddlewareConfig",{"type":92,"value":205},{"type":86,"tag":101,"props":548,"children":550},{"className":549},[],[551],{"type":92,"value":552},"validateRouting",{"type":92,"value":554},", etc.), debug headers, common issues",{"type":86,"tag":453,"props":556,"children":557},{},[558],{"type":86,"tag":101,"props":559,"children":561},{"className":560},[],[562],{"type":92,"value":563},"references\u002Ftroubleshooting.md",{"type":86,"tag":431,"props":565,"children":566},{},[567,572],{"type":86,"tag":453,"props":568,"children":569},{},[570],{"type":92,"value":571},"Deployment protection, Vercel Firewall, WAF rules for microfrontends",{"type":86,"tag":453,"props":573,"children":574},{},[575],{"type":86,"tag":101,"props":576,"children":578},{"className":577},[],[579],{"type":92,"value":580},"references\u002Fsecurity.md",{"type":86,"tag":95,"props":582,"children":583},{},[584],{"type":92,"value":585},"When the user asks about a specific topic, use grep or search over the relevant reference file to find the answer without loading all references into context.",{"items":587,"total":760},[588,608,622,639,650,665,681,699,711,728,740,750],{"slug":589,"name":589,"fn":590,"description":591,"org":592,"tags":593,"stars":605,"repoUrl":606,"updatedAt":607},"next-cache-components-adoption","enable and migrate to Next.js Cache Components","Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the `cacheComponents` flag, work through a flood of blocking-prerender \u002F instant validation errors, run the `cache-components-instant-false` codemod, or decide between opting routes out with `export const instant = false` and fixing them in place.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[594,597,598,601,604],{"name":595,"slug":596,"type":14},"Caching","caching",{"name":26,"slug":27,"type":14},{"name":599,"slug":600,"type":14},"Migration","migration",{"name":602,"slug":603,"type":14},"Next.js","next-js",{"name":9,"slug":8,"type":14},141208,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext.js","2026-07-24T05:38:30.118542",{"slug":609,"name":609,"fn":610,"description":611,"org":612,"tags":613,"stars":605,"repoUrl":606,"updatedAt":621},"next-cache-components-optimizer","optimize Next.js cache components","Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components \u002F PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next\u002Fplaywright instant() e2e and work it to green, one verified route at a time; the shipped test then guards against regression. Use when asked to make a route's navigation instant (its static shell commits immediately), fix a route whose static shell isn't prerendered\u002Fserved\u002Fprefetched, grow a route's static shell or fix its slow first paint, diagnose which Suspense boundary keeps a route out of its static shell, or write the instant() e2e guard for one. Requires Next.js 16.3+ with cacheComponents; directs an upgrade if older.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[614,615,616,617,620],{"name":595,"slug":596,"type":14},{"name":26,"slug":27,"type":14},{"name":602,"slug":603,"type":14},{"name":618,"slug":619,"type":14},"Performance","performance",{"name":9,"slug":8,"type":14},"2026-07-30T05:31:10.674078",{"slug":623,"name":623,"fn":624,"description":625,"org":626,"tags":627,"stars":605,"repoUrl":606,"updatedAt":638},"next-dev-loop","verify Next.js runtime behavior","Verify Next.js runtime behavior after editing app code. Use this skill to confirm a change actually works in a running app — not just that it compiles or type-checks. Combines \u002F_next\u002Fmcp (Next.js's view) with agent-browser (the browser's view). Requires a running `next dev`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[628,631,632,635,636,637],{"name":629,"slug":630,"type":14},"Debugging","debugging",{"name":26,"slug":27,"type":14},{"name":633,"slug":634,"type":14},"Local Development","local-development",{"name":602,"slug":603,"type":14},{"name":9,"slug":8,"type":14},{"name":23,"slug":24,"type":14},"2026-05-22T06:45:28.627735",{"slug":640,"name":640,"fn":641,"description":642,"org":643,"tags":644,"stars":605,"repoUrl":606,"updatedAt":649},"next-partial-prefetching-adoption","adopt Partial Prefetching in Next.js apps","Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the `partialPrefetching` flag, opt routes in with `export const prefetch = 'partial'`, audit `\u003CLink prefetch={true}>` calls, or resolve the link-prefetch-partial and instant-shell-url-data insights.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[645,646,647,648],{"name":26,"slug":27,"type":14},{"name":602,"slug":603,"type":14},{"name":618,"slug":619,"type":14},{"name":9,"slug":8,"type":14},"2026-07-30T05:31:11.591864",{"slug":651,"name":651,"fn":652,"description":653,"org":654,"tags":655,"stars":662,"repoUrl":663,"updatedAt":664},"turborepo","manage monorepos with Turborepo","Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines,\ndependsOn, caching, remote cache, the \"turbo\" CLI, --filter, --affected, CI optimization, environment\nvariables, internal packages, monorepo structure\u002Fbest practices, and boundaries.\n\nUse when user: configures tasks\u002Fworkflows\u002Fpipelines, creates packages, sets up\nmonorepo, shares code between apps, runs changed\u002Faffected packages, debugs cache,\nor has apps\u002Fpackages directories.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[656,659,660],{"name":657,"slug":658,"type":14},"CI\u002FCD","ci-cd",{"name":618,"slug":619,"type":14},{"name":661,"slug":651,"type":14},"Turborepo",30809,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo","2026-07-30T05:32:14.920116",{"slug":666,"name":666,"fn":667,"description":668,"org":669,"tags":670,"stars":678,"repoUrl":679,"updatedAt":680},"add-function-examples","add AI function examples for testing","Guide for adding new AI function examples, for testing specific features against the actual provider APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[671,674,677],{"name":672,"slug":673,"type":14},"AI SDK","ai-sdk",{"name":675,"slug":676,"type":14},"Testing","testing",{"name":9,"slug":8,"type":14},25670,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fai","2026-04-06T18:55:51.318866",{"slug":682,"name":682,"fn":683,"description":684,"org":685,"tags":686,"stars":678,"repoUrl":679,"updatedAt":698},"add-harness-package","add AI SDK harness packages","Guide for adding new AI SDK harness packages. Use when creating a new @ai-sdk\u002Fharness-\u003Cname> package that adapts a coding-agent runtime to HarnessV1.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[687,690,691,694,697],{"name":688,"slug":689,"type":14},"Agents","agents",{"name":672,"slug":673,"type":14},{"name":692,"slug":693,"type":14},"Harness","harness",{"name":695,"slug":696,"type":14},"SDK","sdk",{"name":9,"slug":8,"type":14},"2026-06-18T08:29:19.858737",{"slug":700,"name":700,"fn":701,"description":702,"org":703,"tags":704,"stars":678,"repoUrl":679,"updatedAt":710},"add-provider-package","add new provider packages to AI SDK","Guide for adding new AI provider packages to the AI SDK. Use when creating a new @ai-sdk\u002F\u003Cprovider> package to integrate an AI service into the SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[705,706,709],{"name":672,"slug":673,"type":14},{"name":707,"slug":708,"type":14},"API Development","api-development",{"name":9,"slug":8,"type":14},"2026-04-06T18:55:47.45549",{"slug":712,"name":712,"fn":713,"description":714,"org":715,"tags":716,"stars":678,"repoUrl":679,"updatedAt":727},"adr-skill","create and maintain architecture decision records","Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept\u002Freject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses Socratic questioning to capture intent before drafting, and validates output against an agent-readiness checklist.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[717,720,721,724],{"name":718,"slug":719,"type":14},"ADR","adr",{"name":17,"slug":18,"type":14},{"name":722,"slug":723,"type":14},"Documentation","documentation",{"name":725,"slug":726,"type":14},"Engineering","engineering","2026-04-06T18:55:50.043694",{"slug":673,"name":673,"fn":729,"description":730,"org":731,"tags":732,"stars":678,"repoUrl":679,"updatedAt":739},"build AI features with Vercel AI SDK","Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: \"AI SDK\", \"Vercel AI SDK\", \"generateText\", \"streamText\", \"add AI to my app\", \"build an agent\", \"tool calling\", \"structured output\", \"useChat\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[733,734,735,738],{"name":688,"slug":689,"type":14},{"name":672,"slug":673,"type":14},{"name":736,"slug":737,"type":14},"LLM","llm",{"name":9,"slug":8,"type":14},"2026-04-06T18:55:48.739463",{"slug":741,"name":741,"fn":742,"description":743,"org":744,"tags":745,"stars":678,"repoUrl":679,"updatedAt":749},"capture-api-response-test-fixture","capture API response test fixtures","Capture API response test fixture.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[746,747,748],{"name":707,"slug":708,"type":14},{"name":675,"slug":676,"type":14},{"name":9,"slug":8,"type":14},"2026-04-06T18:55:56.374433",{"slug":751,"name":751,"fn":752,"description":753,"org":754,"tags":755,"stars":678,"repoUrl":679,"updatedAt":759},"develop-ai-functions-example","develop AI SDK function examples","Develop examples for AI SDK functions. Use when creating, running, or modifying examples under examples\u002Fai-functions\u002Fsrc to validate provider support, demonstrate features, or create test fixtures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[756,757,758],{"name":672,"slug":673,"type":14},{"name":675,"slug":676,"type":14},{"name":9,"slug":8,"type":14},"2026-04-06T18:55:55.088956",68,{"items":762,"total":859},[763,778,796,809,822,835,848],{"slug":764,"name":764,"fn":765,"description":766,"org":767,"tags":768,"stars":28,"repoUrl":29,"updatedAt":777},"ai-gateway","configure and manage Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[769,772,775,776],{"name":770,"slug":771,"type":14},"AI Infrastructure","ai-infrastructure",{"name":773,"slug":774,"type":14},"Cost Optimization","cost-optimization",{"name":736,"slug":737,"type":14},{"name":9,"slug":8,"type":14},"2026-04-06T18:56:06.57787",{"slug":779,"name":779,"fn":780,"description":781,"org":782,"tags":783,"stars":28,"repoUrl":29,"updatedAt":795},"auth","integrate authentication in Next.js apps","Authentication integration guidance — Clerk (native Vercel Marketplace), Descope, and Auth0 setup for Next.js applications. Covers middleware auth patterns, sign-in\u002Fsign-up flows, and Marketplace provisioning. Use when implementing user authentication.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[784,787,790,791,794],{"name":785,"slug":786,"type":14},"Auth0","auth0",{"name":788,"slug":789,"type":14},"Authentication","authentication",{"name":602,"slug":603,"type":14},{"name":792,"slug":793,"type":14},"Security","security",{"name":9,"slug":8,"type":14},"2026-04-06T18:56:17.050565",{"slug":797,"name":797,"fn":798,"description":799,"org":800,"tags":801,"stars":28,"repoUrl":29,"updatedAt":808},"bootstrap","bootstrap Vercel-linked repositories","Project bootstrapping orchestrator for repos that depend on Vercel-linked resources (databases, auth, and managed integrations). Use when setting up or repairing a repository so linking, environment provisioning, env pulls, and first-run db\u002Fdev commands happen in the correct safe order.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[802,805,806,807],{"name":803,"slug":804,"type":14},"Configuration","configuration",{"name":20,"slug":21,"type":14},{"name":633,"slug":634,"type":14},{"name":9,"slug":8,"type":14},"2026-04-06T18:56:18.297868",{"slug":810,"name":810,"fn":811,"description":812,"org":813,"tags":814,"stars":28,"repoUrl":29,"updatedAt":821},"cdn-caching","debug Vercel CDN caching behavior","Debug Vercel CDN caching — cache hit rate, stale content, revalidation behavior, ISR + PPR, per-request cache reasons (cacheReason) and PPR state (ppr_state), and costs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[815,816,819,820],{"name":595,"slug":596,"type":14},{"name":817,"slug":818,"type":14},"Observability","observability",{"name":618,"slug":619,"type":14},{"name":9,"slug":8,"type":14},"2026-07-30T05:31:34.628944",{"slug":823,"name":823,"fn":824,"description":825,"org":826,"tags":827,"stars":28,"repoUrl":29,"updatedAt":834},"chat-sdk","build multi-platform chatbots with Vercel","Vercel Chat SDK expert guidance. Use when building multi-platform chat bots — Slack, Telegram, Microsoft Teams, Discord, Google Chat, GitHub, Linear — with a single codebase. Covers the Chat class, adapters, threads, messages, cards, modals, streaming, state management, and webhook setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[828,829,832,833],{"name":688,"slug":689,"type":14},{"name":830,"slug":831,"type":14},"Messaging","messaging",{"name":695,"slug":696,"type":14},{"name":9,"slug":8,"type":14},"2026-04-06T18:56:26.921901",{"slug":836,"name":836,"fn":837,"description":838,"org":839,"tags":840,"stars":28,"repoUrl":29,"updatedAt":847},"deployments-cicd","manage Vercel deployments and CI\u002FCD","Vercel deployment and CI\u002FCD expert guidance. Use when deploying, promoting, rolling back, inspecting deployments, building with --prebuilt, or configuring CI workflow files for Vercel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[841,842,843,846],{"name":657,"slug":658,"type":14},{"name":20,"slug":21,"type":14},{"name":844,"slug":845,"type":14},"Operations","operations",{"name":9,"slug":8,"type":14},"2026-04-06T18:56:22.054263",{"slug":849,"name":849,"fn":850,"description":851,"org":852,"tags":853,"stars":28,"repoUrl":29,"updatedAt":858},"env-vars","manage Vercel environment variables","Vercel environment variable expert guidance. Use when working with .env files, vercel env commands, OIDC tokens, or managing environment-specific configuration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[854,855,856,857],{"name":803,"slug":804,"type":14},{"name":844,"slug":845,"type":14},{"name":792,"slug":793,"type":14},{"name":9,"slug":8,"type":14},"2026-04-06T18:56:28.150777",29]