[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-runtime-cache":3,"mdc-7zugi6-key":39,"related-repo-openai-runtime-cache":3398,"related-org-openai-runtime-cache":3516},{"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},"runtime-cache","implement Vercel Runtime Cache strategies","Vercel Runtime Cache API guidance — ephemeral per-region key-value cache with tag-based invalidation. Shared across Functions, Routing Middleware, and Builds. Use when implementing caching strategies beyond framework-level caching.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22,25],{"name":13,"slug":14,"type":15},"Performance","performance","tag",{"name":17,"slug":18,"type":15},"Vercel","vercel",{"name":20,"slug":21,"type":15},"Backend","backend",{"name":23,"slug":24,"type":15},"Serverless","serverless",{"name":26,"slug":27,"type":15},"Caching","caching",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:40:52.079223",null,465,[],{"repoUrl":29,"stars":28,"forks":32,"topics":35,"description":36},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fvercel\u002Fskills\u002Fruntime-cache","---\nname: runtime-cache\ndescription: Vercel Runtime Cache API guidance — ephemeral per-region key-value cache with tag-based invalidation. Shared across Functions, Routing Middleware, and Builds. Use when implementing caching strategies beyond framework-level caching.\nmetadata:\n  priority: 6\n  docs:\n    - \"https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fapp\u002Fbuilding-your-application\u002Fcaching\"\n  sitemap: \"https:\u002F\u002Fnextjs.org\u002Fsitemap.xml\"\n  pathPatterns: \n    - 'lib\u002Fcache\u002F**'\n    - 'src\u002Flib\u002Fcache\u002F**'\n    - 'lib\u002Fcache.*'\n    - 'src\u002Flib\u002Fcache.*'\n  bashPatterns:\n    - '\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Ffunctions\\b'\n    - '\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Ffunctions\\b'\n    - '\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Ffunctions\\b'\n    - '\\byarn\\s+add\\s+[^\\n]*@vercel\u002Ffunctions\\b'\n---\n\n# Vercel Runtime Cache API\n\nYou are an expert in the Vercel Runtime Cache — an ephemeral caching layer for serverless compute.\n\n## What It Is\n\nThe Runtime Cache is a **per-region key-value store** accessible from Vercel Functions, Routing Middleware, and Builds. It supports **tag-based invalidation** for granular cache control.\n\n- **Regional**: Each Vercel region has its own isolated cache\n- **Isolated**: Scoped per project AND per deployment environment (`preview` vs `production`)\n- **Persistent across deployments**: Cached data survives new deploys; invalidation via TTL or `expireTag`\n- **Ephemeral**: Fixed storage limit per project; LRU eviction when full\n- **Framework-agnostic**: Works with any framework via `@vercel\u002Ffunctions`\n\n## Key APIs\n\nAll APIs from `@vercel\u002Ffunctions`:\n\n### Basic Cache Operations\n\n```ts\nimport { getCache } from '@vercel\u002Ffunctions';\n\nconst cache = getCache();\n\n\u002F\u002F Store data with TTL and tags\nawait cache.set('user:123', userData, {\n  ttl: 3600,                      \u002F\u002F seconds\n  tags: ['users', 'user:123'],    \u002F\u002F for bulk invalidation\n  name: 'user-profile',           \u002F\u002F human-readable label for observability\n});\n\n\u002F\u002F Retrieve cached data (returns value or undefined)\nconst data = await cache.get('user:123');\n\n\u002F\u002F Delete a specific key\nawait cache.delete('user:123');\n\n\u002F\u002F Expire all entries with a tag (propagates globally within 300ms)\nawait cache.expireTag('users');\nawait cache.expireTag(['users', 'user:123']); \u002F\u002F multiple tags\n```\n\n### Cache Options\n\n```ts\nconst cache = getCache({\n  namespace: 'api',                    \u002F\u002F prefix for keys\n  namespaceSeparator: ':',             \u002F\u002F separator (default)\n  keyHashFunction: (key) => sha256(key), \u002F\u002F custom key hashing\n});\n```\n\n### Full Example (Framework-Agnostic)\n\n```ts\nimport { getCache } from '@vercel\u002Ffunctions';\n\nexport default {\n  async fetch(request: Request) {\n    const cache = getCache();\n    const cached = await cache.get('blog-posts');\n\n    if (cached) {\n      return Response.json(cached);\n    }\n\n    const posts = await fetch('https:\u002F\u002Fapi.example.com\u002Fposts').then(r => r.json());\n\n    await cache.set('blog-posts', posts, {\n      ttl: 3600,\n      tags: ['blog'],\n    });\n\n    return Response.json(posts);\n  },\n};\n```\n\n### Tag Expiration from Server Action\n\n```ts\n'use server';\nimport { getCache } from '@vercel\u002Ffunctions';\n\nexport async function invalidateBlog() {\n  await getCache().expireTag('blog');\n}\n```\n\n## CDN Cache Purging Functions\n\nThese purge across **all three cache layers** (CDN + Runtime Cache + Data Cache):\n\n```ts\nimport { invalidateByTag, dangerouslyDeleteByTag } from '@vercel\u002Ffunctions';\n\n\u002F\u002F Stale-while-revalidate: serves stale, revalidates in background\nawait invalidateByTag('blog-posts');\n\n\u002F\u002F Hard delete: next request blocks while fetching from origin (cache stampede risk)\nawait dangerouslyDeleteByTag('blog-posts', {\n  revalidationDeadlineSeconds: 3600,\n});\n```\n\n**Important distinction**:\n- `cache.expireTag()` — operates on Runtime Cache only\n- `invalidateByTag()` \u002F `dangerouslyDeleteByTag()` — purges CDN + Runtime + Data caches\n\n## Next.js Integration\n\n### Next.js 16+ (`use cache: remote`)\n\n```ts\n\u002F\u002F next.config.ts\nconst nextConfig: NextConfig = { cacheComponents: true };\n```\n\n```ts\nimport { cacheLife, cacheTag } from 'next\u002Fcache';\n\nasync function getData() {\n  'use cache: remote'     \u002F\u002F stores in Vercel Runtime Cache\n  cacheTag('example-tag')\n  cacheLife({ expire: 3600 })\n  return fetch('https:\u002F\u002Fapi.example.com\u002Fdata').then(r => r.json());\n}\n```\n\n- `'use cache'` (no `: remote`) — in-memory only, ephemeral per instance\n- `'use cache: remote'` — stores in Vercel Runtime Cache\n\n### Next.js 16 Invalidation APIs\n\n| Function | Context | Behavior |\n|----------|---------|----------|\n| `updateTag(tag)` | Server Actions only | Immediate expiration, read-your-own-writes |\n| `revalidateTag(tag, 'max')` | Server Actions + Route Handlers | Stale-while-revalidate (recommended) |\n| `revalidateTag(tag, { expire: 0 })` | Route Handlers (webhooks) | Immediate expiration from external triggers |\n\n**Important**: Single-argument `revalidateTag(tag)` is deprecated in Next.js 16. Always pass a `cacheLife` profile as the second argument.\n\n### Runtime Cache vs ISR Isolation\n\n- Runtime Cache tags do **NOT** apply to ISR pages\n- `cache.expireTag` does **NOT** invalidate ISR cache\n- Next.js `revalidatePath` \u002F `revalidateTag` does **NOT** invalidate Runtime Cache\n- To manage both, use same tag and purge via `invalidateByTag` (hits all cache layers)\n\n## CLI Cache Commands\n\n```bash\n# Purge all cached data\nvercel cache purge                    # CDN + Data cache\nvercel cache purge --type cdn         # CDN only\nvercel cache purge --type data        # Data cache only\nvercel cache purge --yes              # skip confirmation\n\n# Invalidate by tag (stale-while-revalidate)\nvercel cache invalidate --tag blog-posts,user-profiles\n\n# Hard delete by tag (blocks until revalidated)\nvercel cache dangerously-delete --tag blog-posts\nvercel cache dangerously-delete --tag blog-posts --revalidation-deadline-seconds 3600\n\n# Image invalidation\nvercel cache invalidate --srcimg \u002Fimages\u002Fhero.jpg\n```\n\nNote: `--tag` and `--srcimg` cannot be used together.\n\n## CDN Cache Tags\n\nAdd tags to CDN cached responses for later invalidation:\n\n```ts\nimport { addCacheTag } from '@vercel\u002Ffunctions';\n\n\u002F\u002F Via helper\naddCacheTag('product-123');\n\n\u002F\u002F Via response header\nreturn Response.json(product, {\n  headers: {\n    'Vercel-CDN-Cache-Control': 'public, max-age=86400',\n    'Vercel-Cache-Tag': 'product-123,products',\n  },\n});\n```\n\n## Limits\n\n| Property | Limit |\n|----------|-------|\n| Item size | 2 MB |\n| Tags per Runtime Cache item | 64 |\n| Tags per CDN item | 128 |\n| Max tag length | 256 bytes |\n| Tags per bulk REST API call | 16 |\n\nTags are **case-sensitive** and **cannot contain commas**.\n\n## Observability\n\nMonitor hit rates, invalidation patterns, and storage usage in the Vercel Dashboard under **Observability → Runtime Cache**. The CDN dashboard (March 5, 2026) provides a unified view of global traffic distribution, cache performance metrics, a redesigned purging interface, and **project-level routing** — update response headers or rewrite to external APIs without triggering a new deployment. Project-level routes are available on all plans and take effect instantly.\n\n## When to Use\n\n- Caching API responses or computed data across functions in a region\n- Tag-based invalidation when content changes (CMS webhook → expire tag)\n- Reducing database load for frequently accessed data\n- Cross-function data sharing within a region\n\n## When NOT to Use\n\n- Framework-level page caching → use Next.js Cache Components (`'use cache'`)\n- Persistent storage → use a database (Neon, Upstash)\n- CDN-level full response caching → use `Cache-Control` \u002F `Vercel-CDN-Cache-Control` headers\n- Cross-region shared state → use a database\n- User-specific data that differs per request\n\n## References\n\n- 📖 docs: https:\u002F\u002Fvercel.com\u002Fdocs\u002Fruntime-cache\n- 📖 changelog: https:\u002F\u002Fvercel.com\u002Fchangelog\u002Fintroducing-the-runtime-cache-api\n- 📖 CLI cache: https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcli\u002Fcache\n- 📖 CDN cache purging: https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcdn-cache\u002Fpurge\n",{"data":40,"body":56},{"name":4,"description":6,"metadata":41},{"priority":42,"docs":43,"sitemap":45,"pathPatterns":46,"bashPatterns":51},6,[44],"https:\u002F\u002Fnextjs.org\u002Fdocs\u002Fapp\u002Fbuilding-your-application\u002Fcaching","https:\u002F\u002Fnextjs.org\u002Fsitemap.xml",[47,48,49,50],"lib\u002Fcache\u002F**","src\u002Flib\u002Fcache\u002F**","lib\u002Fcache.*","src\u002Flib\u002Fcache.*",[52,53,54,55],"\\bnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Ffunctions\\b","\\bpnpm\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Ffunctions\\b","\\bbun\\s+(install|i|add)\\s+[^\\n]*@vercel\u002Ffunctions\\b","\\byarn\\s+add\\s+[^\\n]*@vercel\u002Ffunctions\\b",{"type":57,"children":58},"root",[59,68,74,81,101,185,191,203,210,806,812,980,986,1551,1557,1716,1722,1734,1925,1934,1967,1973,1986,2050,2308,2341,2347,2446,2472,2478,2548,2554,2831,2852,2858,2863,3119,3125,3212,3229,3235,3254,3260,3283,3289,3337,3343,3392],{"type":60,"tag":61,"props":62,"children":64},"element","h1",{"id":63},"vercel-runtime-cache-api",[65],{"type":66,"value":67},"text","Vercel Runtime Cache API",{"type":60,"tag":69,"props":70,"children":71},"p",{},[72],{"type":66,"value":73},"You are an expert in the Vercel Runtime Cache — an ephemeral caching layer for serverless compute.",{"type":60,"tag":75,"props":76,"children":78},"h2",{"id":77},"what-it-is",[79],{"type":66,"value":80},"What It Is",{"type":60,"tag":69,"props":82,"children":83},{},[84,86,92,94,99],{"type":66,"value":85},"The Runtime Cache is a ",{"type":60,"tag":87,"props":88,"children":89},"strong",{},[90],{"type":66,"value":91},"per-region key-value store",{"type":66,"value":93}," accessible from Vercel Functions, Routing Middleware, and Builds. It supports ",{"type":60,"tag":87,"props":95,"children":96},{},[97],{"type":66,"value":98},"tag-based invalidation",{"type":66,"value":100}," for granular cache control.",{"type":60,"tag":102,"props":103,"children":104},"ul",{},[105,116,143,159,169],{"type":60,"tag":106,"props":107,"children":108},"li",{},[109,114],{"type":60,"tag":87,"props":110,"children":111},{},[112],{"type":66,"value":113},"Regional",{"type":66,"value":115},": Each Vercel region has its own isolated cache",{"type":60,"tag":106,"props":117,"children":118},{},[119,124,126,133,135,141],{"type":60,"tag":87,"props":120,"children":121},{},[122],{"type":66,"value":123},"Isolated",{"type":66,"value":125},": Scoped per project AND per deployment environment (",{"type":60,"tag":127,"props":128,"children":130},"code",{"className":129},[],[131],{"type":66,"value":132},"preview",{"type":66,"value":134}," vs ",{"type":60,"tag":127,"props":136,"children":138},{"className":137},[],[139],{"type":66,"value":140},"production",{"type":66,"value":142},")",{"type":60,"tag":106,"props":144,"children":145},{},[146,151,153],{"type":60,"tag":87,"props":147,"children":148},{},[149],{"type":66,"value":150},"Persistent across deployments",{"type":66,"value":152},": Cached data survives new deploys; invalidation via TTL or ",{"type":60,"tag":127,"props":154,"children":156},{"className":155},[],[157],{"type":66,"value":158},"expireTag",{"type":60,"tag":106,"props":160,"children":161},{},[162,167],{"type":60,"tag":87,"props":163,"children":164},{},[165],{"type":66,"value":166},"Ephemeral",{"type":66,"value":168},": Fixed storage limit per project; LRU eviction when full",{"type":60,"tag":106,"props":170,"children":171},{},[172,177,179],{"type":60,"tag":87,"props":173,"children":174},{},[175],{"type":66,"value":176},"Framework-agnostic",{"type":66,"value":178},": Works with any framework via ",{"type":60,"tag":127,"props":180,"children":182},{"className":181},[],[183],{"type":66,"value":184},"@vercel\u002Ffunctions",{"type":60,"tag":75,"props":186,"children":188},{"id":187},"key-apis",[189],{"type":66,"value":190},"Key APIs",{"type":60,"tag":69,"props":192,"children":193},{},[194,196,201],{"type":66,"value":195},"All APIs from ",{"type":60,"tag":127,"props":197,"children":199},{"className":198},[],[200],{"type":66,"value":184},{"type":66,"value":202},":",{"type":60,"tag":204,"props":205,"children":207},"h3",{"id":206},"basic-cache-operations",[208],{"type":66,"value":209},"Basic Cache Operations",{"type":60,"tag":211,"props":212,"children":217},"pre",{"className":213,"code":214,"language":215,"meta":216,"style":216},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { getCache } from '@vercel\u002Ffunctions';\n\nconst cache = getCache();\n\n\u002F\u002F Store data with TTL and tags\nawait cache.set('user:123', userData, {\n  ttl: 3600,                      \u002F\u002F seconds\n  tags: ['users', 'user:123'],    \u002F\u002F for bulk invalidation\n  name: 'user-profile',           \u002F\u002F human-readable label for observability\n});\n\n\u002F\u002F Retrieve cached data (returns value or undefined)\nconst data = await cache.get('user:123');\n\n\u002F\u002F Delete a specific key\nawait cache.delete('user:123');\n\n\u002F\u002F Expire all entries with a tag (propagates globally within 300ms)\nawait cache.expireTag('users');\nawait cache.expireTag(['users', 'user:123']); \u002F\u002F multiple tags\n","ts","",[218],{"type":60,"tag":127,"props":219,"children":220},{"__ignoreMap":216},[221,275,285,319,327,337,397,426,487,522,539,547,556,615,623,632,677,685,694,738],{"type":60,"tag":222,"props":223,"children":226},"span",{"class":224,"line":225},"line",1,[227,233,239,245,250,255,260,265,270],{"type":60,"tag":222,"props":228,"children":230},{"style":229},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[231],{"type":66,"value":232},"import",{"type":60,"tag":222,"props":234,"children":236},{"style":235},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[237],{"type":66,"value":238}," {",{"type":60,"tag":222,"props":240,"children":242},{"style":241},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[243],{"type":66,"value":244}," getCache",{"type":60,"tag":222,"props":246,"children":247},{"style":235},[248],{"type":66,"value":249}," }",{"type":60,"tag":222,"props":251,"children":252},{"style":229},[253],{"type":66,"value":254}," from",{"type":60,"tag":222,"props":256,"children":257},{"style":235},[258],{"type":66,"value":259}," '",{"type":60,"tag":222,"props":261,"children":263},{"style":262},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[264],{"type":66,"value":184},{"type":60,"tag":222,"props":266,"children":267},{"style":235},[268],{"type":66,"value":269},"'",{"type":60,"tag":222,"props":271,"children":272},{"style":235},[273],{"type":66,"value":274},";\n",{"type":60,"tag":222,"props":276,"children":278},{"class":224,"line":277},2,[279],{"type":60,"tag":222,"props":280,"children":282},{"emptyLinePlaceholder":281},true,[283],{"type":66,"value":284},"\n",{"type":60,"tag":222,"props":286,"children":288},{"class":224,"line":287},3,[289,295,300,305,310,315],{"type":60,"tag":222,"props":290,"children":292},{"style":291},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[293],{"type":66,"value":294},"const",{"type":60,"tag":222,"props":296,"children":297},{"style":241},[298],{"type":66,"value":299}," cache ",{"type":60,"tag":222,"props":301,"children":302},{"style":235},[303],{"type":66,"value":304},"=",{"type":60,"tag":222,"props":306,"children":308},{"style":307},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[309],{"type":66,"value":244},{"type":60,"tag":222,"props":311,"children":312},{"style":241},[313],{"type":66,"value":314},"()",{"type":60,"tag":222,"props":316,"children":317},{"style":235},[318],{"type":66,"value":274},{"type":60,"tag":222,"props":320,"children":322},{"class":224,"line":321},4,[323],{"type":60,"tag":222,"props":324,"children":325},{"emptyLinePlaceholder":281},[326],{"type":66,"value":284},{"type":60,"tag":222,"props":328,"children":330},{"class":224,"line":329},5,[331],{"type":60,"tag":222,"props":332,"children":334},{"style":333},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[335],{"type":66,"value":336},"\u002F\u002F Store data with TTL and tags\n",{"type":60,"tag":222,"props":338,"children":339},{"class":224,"line":42},[340,345,350,355,360,365,369,374,378,383,388,392],{"type":60,"tag":222,"props":341,"children":342},{"style":229},[343],{"type":66,"value":344},"await",{"type":60,"tag":222,"props":346,"children":347},{"style":241},[348],{"type":66,"value":349}," cache",{"type":60,"tag":222,"props":351,"children":352},{"style":235},[353],{"type":66,"value":354},".",{"type":60,"tag":222,"props":356,"children":357},{"style":307},[358],{"type":66,"value":359},"set",{"type":60,"tag":222,"props":361,"children":362},{"style":241},[363],{"type":66,"value":364},"(",{"type":60,"tag":222,"props":366,"children":367},{"style":235},[368],{"type":66,"value":269},{"type":60,"tag":222,"props":370,"children":371},{"style":262},[372],{"type":66,"value":373},"user:123",{"type":60,"tag":222,"props":375,"children":376},{"style":235},[377],{"type":66,"value":269},{"type":60,"tag":222,"props":379,"children":380},{"style":235},[381],{"type":66,"value":382},",",{"type":60,"tag":222,"props":384,"children":385},{"style":241},[386],{"type":66,"value":387}," userData",{"type":60,"tag":222,"props":389,"children":390},{"style":235},[391],{"type":66,"value":382},{"type":60,"tag":222,"props":393,"children":394},{"style":235},[395],{"type":66,"value":396}," {\n",{"type":60,"tag":222,"props":398,"children":400},{"class":224,"line":399},7,[401,407,411,417,421],{"type":60,"tag":222,"props":402,"children":404},{"style":403},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[405],{"type":66,"value":406},"  ttl",{"type":60,"tag":222,"props":408,"children":409},{"style":235},[410],{"type":66,"value":202},{"type":60,"tag":222,"props":412,"children":414},{"style":413},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[415],{"type":66,"value":416}," 3600",{"type":60,"tag":222,"props":418,"children":419},{"style":235},[420],{"type":66,"value":382},{"type":60,"tag":222,"props":422,"children":423},{"style":333},[424],{"type":66,"value":425},"                      \u002F\u002F seconds\n",{"type":60,"tag":222,"props":427,"children":429},{"class":224,"line":428},8,[430,435,439,444,448,453,457,461,465,469,473,478,482],{"type":60,"tag":222,"props":431,"children":432},{"style":403},[433],{"type":66,"value":434},"  tags",{"type":60,"tag":222,"props":436,"children":437},{"style":235},[438],{"type":66,"value":202},{"type":60,"tag":222,"props":440,"children":441},{"style":241},[442],{"type":66,"value":443}," [",{"type":60,"tag":222,"props":445,"children":446},{"style":235},[447],{"type":66,"value":269},{"type":60,"tag":222,"props":449,"children":450},{"style":262},[451],{"type":66,"value":452},"users",{"type":60,"tag":222,"props":454,"children":455},{"style":235},[456],{"type":66,"value":269},{"type":60,"tag":222,"props":458,"children":459},{"style":235},[460],{"type":66,"value":382},{"type":60,"tag":222,"props":462,"children":463},{"style":235},[464],{"type":66,"value":259},{"type":60,"tag":222,"props":466,"children":467},{"style":262},[468],{"type":66,"value":373},{"type":60,"tag":222,"props":470,"children":471},{"style":235},[472],{"type":66,"value":269},{"type":60,"tag":222,"props":474,"children":475},{"style":241},[476],{"type":66,"value":477},"]",{"type":60,"tag":222,"props":479,"children":480},{"style":235},[481],{"type":66,"value":382},{"type":60,"tag":222,"props":483,"children":484},{"style":333},[485],{"type":66,"value":486},"    \u002F\u002F for bulk invalidation\n",{"type":60,"tag":222,"props":488,"children":490},{"class":224,"line":489},9,[491,496,500,504,509,513,517],{"type":60,"tag":222,"props":492,"children":493},{"style":403},[494],{"type":66,"value":495},"  name",{"type":60,"tag":222,"props":497,"children":498},{"style":235},[499],{"type":66,"value":202},{"type":60,"tag":222,"props":501,"children":502},{"style":235},[503],{"type":66,"value":259},{"type":60,"tag":222,"props":505,"children":506},{"style":262},[507],{"type":66,"value":508},"user-profile",{"type":60,"tag":222,"props":510,"children":511},{"style":235},[512],{"type":66,"value":269},{"type":60,"tag":222,"props":514,"children":515},{"style":235},[516],{"type":66,"value":382},{"type":60,"tag":222,"props":518,"children":519},{"style":333},[520],{"type":66,"value":521},"           \u002F\u002F human-readable label for observability\n",{"type":60,"tag":222,"props":523,"children":525},{"class":224,"line":524},10,[526,531,535],{"type":60,"tag":222,"props":527,"children":528},{"style":235},[529],{"type":66,"value":530},"}",{"type":60,"tag":222,"props":532,"children":533},{"style":241},[534],{"type":66,"value":142},{"type":60,"tag":222,"props":536,"children":537},{"style":235},[538],{"type":66,"value":274},{"type":60,"tag":222,"props":540,"children":542},{"class":224,"line":541},11,[543],{"type":60,"tag":222,"props":544,"children":545},{"emptyLinePlaceholder":281},[546],{"type":66,"value":284},{"type":60,"tag":222,"props":548,"children":550},{"class":224,"line":549},12,[551],{"type":60,"tag":222,"props":552,"children":553},{"style":333},[554],{"type":66,"value":555},"\u002F\u002F Retrieve cached data (returns value or undefined)\n",{"type":60,"tag":222,"props":557,"children":559},{"class":224,"line":558},13,[560,564,569,573,578,582,586,591,595,599,603,607,611],{"type":60,"tag":222,"props":561,"children":562},{"style":291},[563],{"type":66,"value":294},{"type":60,"tag":222,"props":565,"children":566},{"style":241},[567],{"type":66,"value":568}," data ",{"type":60,"tag":222,"props":570,"children":571},{"style":235},[572],{"type":66,"value":304},{"type":60,"tag":222,"props":574,"children":575},{"style":229},[576],{"type":66,"value":577}," await",{"type":60,"tag":222,"props":579,"children":580},{"style":241},[581],{"type":66,"value":349},{"type":60,"tag":222,"props":583,"children":584},{"style":235},[585],{"type":66,"value":354},{"type":60,"tag":222,"props":587,"children":588},{"style":307},[589],{"type":66,"value":590},"get",{"type":60,"tag":222,"props":592,"children":593},{"style":241},[594],{"type":66,"value":364},{"type":60,"tag":222,"props":596,"children":597},{"style":235},[598],{"type":66,"value":269},{"type":60,"tag":222,"props":600,"children":601},{"style":262},[602],{"type":66,"value":373},{"type":60,"tag":222,"props":604,"children":605},{"style":235},[606],{"type":66,"value":269},{"type":60,"tag":222,"props":608,"children":609},{"style":241},[610],{"type":66,"value":142},{"type":60,"tag":222,"props":612,"children":613},{"style":235},[614],{"type":66,"value":274},{"type":60,"tag":222,"props":616,"children":618},{"class":224,"line":617},14,[619],{"type":60,"tag":222,"props":620,"children":621},{"emptyLinePlaceholder":281},[622],{"type":66,"value":284},{"type":60,"tag":222,"props":624,"children":626},{"class":224,"line":625},15,[627],{"type":60,"tag":222,"props":628,"children":629},{"style":333},[630],{"type":66,"value":631},"\u002F\u002F Delete a specific key\n",{"type":60,"tag":222,"props":633,"children":635},{"class":224,"line":634},16,[636,640,644,648,653,657,661,665,669,673],{"type":60,"tag":222,"props":637,"children":638},{"style":229},[639],{"type":66,"value":344},{"type":60,"tag":222,"props":641,"children":642},{"style":241},[643],{"type":66,"value":349},{"type":60,"tag":222,"props":645,"children":646},{"style":235},[647],{"type":66,"value":354},{"type":60,"tag":222,"props":649,"children":650},{"style":307},[651],{"type":66,"value":652},"delete",{"type":60,"tag":222,"props":654,"children":655},{"style":241},[656],{"type":66,"value":364},{"type":60,"tag":222,"props":658,"children":659},{"style":235},[660],{"type":66,"value":269},{"type":60,"tag":222,"props":662,"children":663},{"style":262},[664],{"type":66,"value":373},{"type":60,"tag":222,"props":666,"children":667},{"style":235},[668],{"type":66,"value":269},{"type":60,"tag":222,"props":670,"children":671},{"style":241},[672],{"type":66,"value":142},{"type":60,"tag":222,"props":674,"children":675},{"style":235},[676],{"type":66,"value":274},{"type":60,"tag":222,"props":678,"children":680},{"class":224,"line":679},17,[681],{"type":60,"tag":222,"props":682,"children":683},{"emptyLinePlaceholder":281},[684],{"type":66,"value":284},{"type":60,"tag":222,"props":686,"children":688},{"class":224,"line":687},18,[689],{"type":60,"tag":222,"props":690,"children":691},{"style":333},[692],{"type":66,"value":693},"\u002F\u002F Expire all entries with a tag (propagates globally within 300ms)\n",{"type":60,"tag":222,"props":695,"children":697},{"class":224,"line":696},19,[698,702,706,710,714,718,722,726,730,734],{"type":60,"tag":222,"props":699,"children":700},{"style":229},[701],{"type":66,"value":344},{"type":60,"tag":222,"props":703,"children":704},{"style":241},[705],{"type":66,"value":349},{"type":60,"tag":222,"props":707,"children":708},{"style":235},[709],{"type":66,"value":354},{"type":60,"tag":222,"props":711,"children":712},{"style":307},[713],{"type":66,"value":158},{"type":60,"tag":222,"props":715,"children":716},{"style":241},[717],{"type":66,"value":364},{"type":60,"tag":222,"props":719,"children":720},{"style":235},[721],{"type":66,"value":269},{"type":60,"tag":222,"props":723,"children":724},{"style":262},[725],{"type":66,"value":452},{"type":60,"tag":222,"props":727,"children":728},{"style":235},[729],{"type":66,"value":269},{"type":60,"tag":222,"props":731,"children":732},{"style":241},[733],{"type":66,"value":142},{"type":60,"tag":222,"props":735,"children":736},{"style":235},[737],{"type":66,"value":274},{"type":60,"tag":222,"props":739,"children":741},{"class":224,"line":740},20,[742,746,750,754,758,763,767,771,775,779,783,787,791,796,801],{"type":60,"tag":222,"props":743,"children":744},{"style":229},[745],{"type":66,"value":344},{"type":60,"tag":222,"props":747,"children":748},{"style":241},[749],{"type":66,"value":349},{"type":60,"tag":222,"props":751,"children":752},{"style":235},[753],{"type":66,"value":354},{"type":60,"tag":222,"props":755,"children":756},{"style":307},[757],{"type":66,"value":158},{"type":60,"tag":222,"props":759,"children":760},{"style":241},[761],{"type":66,"value":762},"([",{"type":60,"tag":222,"props":764,"children":765},{"style":235},[766],{"type":66,"value":269},{"type":60,"tag":222,"props":768,"children":769},{"style":262},[770],{"type":66,"value":452},{"type":60,"tag":222,"props":772,"children":773},{"style":235},[774],{"type":66,"value":269},{"type":60,"tag":222,"props":776,"children":777},{"style":235},[778],{"type":66,"value":382},{"type":60,"tag":222,"props":780,"children":781},{"style":235},[782],{"type":66,"value":259},{"type":60,"tag":222,"props":784,"children":785},{"style":262},[786],{"type":66,"value":373},{"type":60,"tag":222,"props":788,"children":789},{"style":235},[790],{"type":66,"value":269},{"type":60,"tag":222,"props":792,"children":793},{"style":241},[794],{"type":66,"value":795},"])",{"type":60,"tag":222,"props":797,"children":798},{"style":235},[799],{"type":66,"value":800},";",{"type":60,"tag":222,"props":802,"children":803},{"style":333},[804],{"type":66,"value":805}," \u002F\u002F multiple tags\n",{"type":60,"tag":204,"props":807,"children":809},{"id":808},"cache-options",[810],{"type":66,"value":811},"Cache Options",{"type":60,"tag":211,"props":813,"children":815},{"className":213,"code":814,"language":215,"meta":216,"style":216},"const cache = getCache({\n  namespace: 'api',                    \u002F\u002F prefix for keys\n  namespaceSeparator: ':',             \u002F\u002F separator (default)\n  keyHashFunction: (key) => sha256(key), \u002F\u002F custom key hashing\n});\n",[816],{"type":60,"tag":127,"props":817,"children":818},{"__ignoreMap":216},[819,847,881,914,965],{"type":60,"tag":222,"props":820,"children":821},{"class":224,"line":225},[822,826,830,834,838,842],{"type":60,"tag":222,"props":823,"children":824},{"style":291},[825],{"type":66,"value":294},{"type":60,"tag":222,"props":827,"children":828},{"style":241},[829],{"type":66,"value":299},{"type":60,"tag":222,"props":831,"children":832},{"style":235},[833],{"type":66,"value":304},{"type":60,"tag":222,"props":835,"children":836},{"style":307},[837],{"type":66,"value":244},{"type":60,"tag":222,"props":839,"children":840},{"style":241},[841],{"type":66,"value":364},{"type":60,"tag":222,"props":843,"children":844},{"style":235},[845],{"type":66,"value":846},"{\n",{"type":60,"tag":222,"props":848,"children":849},{"class":224,"line":277},[850,855,859,863,868,872,876],{"type":60,"tag":222,"props":851,"children":852},{"style":403},[853],{"type":66,"value":854},"  namespace",{"type":60,"tag":222,"props":856,"children":857},{"style":235},[858],{"type":66,"value":202},{"type":60,"tag":222,"props":860,"children":861},{"style":235},[862],{"type":66,"value":259},{"type":60,"tag":222,"props":864,"children":865},{"style":262},[866],{"type":66,"value":867},"api",{"type":60,"tag":222,"props":869,"children":870},{"style":235},[871],{"type":66,"value":269},{"type":60,"tag":222,"props":873,"children":874},{"style":235},[875],{"type":66,"value":382},{"type":60,"tag":222,"props":877,"children":878},{"style":333},[879],{"type":66,"value":880},"                    \u002F\u002F prefix for keys\n",{"type":60,"tag":222,"props":882,"children":883},{"class":224,"line":287},[884,889,893,897,901,905,909],{"type":60,"tag":222,"props":885,"children":886},{"style":403},[887],{"type":66,"value":888},"  namespaceSeparator",{"type":60,"tag":222,"props":890,"children":891},{"style":235},[892],{"type":66,"value":202},{"type":60,"tag":222,"props":894,"children":895},{"style":235},[896],{"type":66,"value":259},{"type":60,"tag":222,"props":898,"children":899},{"style":262},[900],{"type":66,"value":202},{"type":60,"tag":222,"props":902,"children":903},{"style":235},[904],{"type":66,"value":269},{"type":60,"tag":222,"props":906,"children":907},{"style":235},[908],{"type":66,"value":382},{"type":60,"tag":222,"props":910,"children":911},{"style":333},[912],{"type":66,"value":913},"             \u002F\u002F separator (default)\n",{"type":60,"tag":222,"props":915,"children":916},{"class":224,"line":321},[917,922,926,931,937,941,946,951,956,960],{"type":60,"tag":222,"props":918,"children":919},{"style":307},[920],{"type":66,"value":921},"  keyHashFunction",{"type":60,"tag":222,"props":923,"children":924},{"style":235},[925],{"type":66,"value":202},{"type":60,"tag":222,"props":927,"children":928},{"style":235},[929],{"type":66,"value":930}," (",{"type":60,"tag":222,"props":932,"children":934},{"style":933},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[935],{"type":66,"value":936},"key",{"type":60,"tag":222,"props":938,"children":939},{"style":235},[940],{"type":66,"value":142},{"type":60,"tag":222,"props":942,"children":943},{"style":291},[944],{"type":66,"value":945}," =>",{"type":60,"tag":222,"props":947,"children":948},{"style":307},[949],{"type":66,"value":950}," sha256",{"type":60,"tag":222,"props":952,"children":953},{"style":241},[954],{"type":66,"value":955},"(key)",{"type":60,"tag":222,"props":957,"children":958},{"style":235},[959],{"type":66,"value":382},{"type":60,"tag":222,"props":961,"children":962},{"style":333},[963],{"type":66,"value":964}," \u002F\u002F custom key hashing\n",{"type":60,"tag":222,"props":966,"children":967},{"class":224,"line":329},[968,972,976],{"type":60,"tag":222,"props":969,"children":970},{"style":235},[971],{"type":66,"value":530},{"type":60,"tag":222,"props":973,"children":974},{"style":241},[975],{"type":66,"value":142},{"type":60,"tag":222,"props":977,"children":978},{"style":235},[979],{"type":66,"value":274},{"type":60,"tag":204,"props":981,"children":983},{"id":982},"full-example-framework-agnostic",[984],{"type":66,"value":985},"Full Example (Framework-Agnostic)",{"type":60,"tag":211,"props":987,"children":989},{"className":213,"code":988,"language":215,"meta":216,"style":216},"import { getCache } from '@vercel\u002Ffunctions';\n\nexport default {\n  async fetch(request: Request) {\n    const cache = getCache();\n    const cached = await cache.get('blog-posts');\n\n    if (cached) {\n      return Response.json(cached);\n    }\n\n    const posts = await fetch('https:\u002F\u002Fapi.example.com\u002Fposts').then(r => r.json());\n\n    await cache.set('blog-posts', posts, {\n      ttl: 3600,\n      tags: ['blog'],\n    });\n\n    return Response.json(posts);\n  },\n};\n",[990],{"type":60,"tag":127,"props":991,"children":992},{"__ignoreMap":216},[993,1032,1039,1056,1096,1125,1182,1189,1215,1253,1261,1268,1357,1364,1416,1437,1474,1490,1497,1534,1542],{"type":60,"tag":222,"props":994,"children":995},{"class":224,"line":225},[996,1000,1004,1008,1012,1016,1020,1024,1028],{"type":60,"tag":222,"props":997,"children":998},{"style":229},[999],{"type":66,"value":232},{"type":60,"tag":222,"props":1001,"children":1002},{"style":235},[1003],{"type":66,"value":238},{"type":60,"tag":222,"props":1005,"children":1006},{"style":241},[1007],{"type":66,"value":244},{"type":60,"tag":222,"props":1009,"children":1010},{"style":235},[1011],{"type":66,"value":249},{"type":60,"tag":222,"props":1013,"children":1014},{"style":229},[1015],{"type":66,"value":254},{"type":60,"tag":222,"props":1017,"children":1018},{"style":235},[1019],{"type":66,"value":259},{"type":60,"tag":222,"props":1021,"children":1022},{"style":262},[1023],{"type":66,"value":184},{"type":60,"tag":222,"props":1025,"children":1026},{"style":235},[1027],{"type":66,"value":269},{"type":60,"tag":222,"props":1029,"children":1030},{"style":235},[1031],{"type":66,"value":274},{"type":60,"tag":222,"props":1033,"children":1034},{"class":224,"line":277},[1035],{"type":60,"tag":222,"props":1036,"children":1037},{"emptyLinePlaceholder":281},[1038],{"type":66,"value":284},{"type":60,"tag":222,"props":1040,"children":1041},{"class":224,"line":287},[1042,1047,1052],{"type":60,"tag":222,"props":1043,"children":1044},{"style":229},[1045],{"type":66,"value":1046},"export",{"type":60,"tag":222,"props":1048,"children":1049},{"style":229},[1050],{"type":66,"value":1051}," default",{"type":60,"tag":222,"props":1053,"children":1054},{"style":235},[1055],{"type":66,"value":396},{"type":60,"tag":222,"props":1057,"children":1058},{"class":224,"line":321},[1059,1064,1069,1073,1078,1082,1088,1092],{"type":60,"tag":222,"props":1060,"children":1061},{"style":291},[1062],{"type":66,"value":1063},"  async",{"type":60,"tag":222,"props":1065,"children":1066},{"style":403},[1067],{"type":66,"value":1068}," fetch",{"type":60,"tag":222,"props":1070,"children":1071},{"style":235},[1072],{"type":66,"value":364},{"type":60,"tag":222,"props":1074,"children":1075},{"style":933},[1076],{"type":66,"value":1077},"request",{"type":60,"tag":222,"props":1079,"children":1080},{"style":235},[1081],{"type":66,"value":202},{"type":60,"tag":222,"props":1083,"children":1085},{"style":1084},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1086],{"type":66,"value":1087}," Request",{"type":60,"tag":222,"props":1089,"children":1090},{"style":235},[1091],{"type":66,"value":142},{"type":60,"tag":222,"props":1093,"children":1094},{"style":235},[1095],{"type":66,"value":396},{"type":60,"tag":222,"props":1097,"children":1098},{"class":224,"line":329},[1099,1104,1108,1113,1117,1121],{"type":60,"tag":222,"props":1100,"children":1101},{"style":291},[1102],{"type":66,"value":1103},"    const",{"type":60,"tag":222,"props":1105,"children":1106},{"style":241},[1107],{"type":66,"value":349},{"type":60,"tag":222,"props":1109,"children":1110},{"style":235},[1111],{"type":66,"value":1112}," =",{"type":60,"tag":222,"props":1114,"children":1115},{"style":307},[1116],{"type":66,"value":244},{"type":60,"tag":222,"props":1118,"children":1119},{"style":403},[1120],{"type":66,"value":314},{"type":60,"tag":222,"props":1122,"children":1123},{"style":235},[1124],{"type":66,"value":274},{"type":60,"tag":222,"props":1126,"children":1127},{"class":224,"line":42},[1128,1132,1137,1141,1145,1149,1153,1157,1161,1165,1170,1174,1178],{"type":60,"tag":222,"props":1129,"children":1130},{"style":291},[1131],{"type":66,"value":1103},{"type":60,"tag":222,"props":1133,"children":1134},{"style":241},[1135],{"type":66,"value":1136}," cached",{"type":60,"tag":222,"props":1138,"children":1139},{"style":235},[1140],{"type":66,"value":1112},{"type":60,"tag":222,"props":1142,"children":1143},{"style":229},[1144],{"type":66,"value":577},{"type":60,"tag":222,"props":1146,"children":1147},{"style":241},[1148],{"type":66,"value":349},{"type":60,"tag":222,"props":1150,"children":1151},{"style":235},[1152],{"type":66,"value":354},{"type":60,"tag":222,"props":1154,"children":1155},{"style":307},[1156],{"type":66,"value":590},{"type":60,"tag":222,"props":1158,"children":1159},{"style":403},[1160],{"type":66,"value":364},{"type":60,"tag":222,"props":1162,"children":1163},{"style":235},[1164],{"type":66,"value":269},{"type":60,"tag":222,"props":1166,"children":1167},{"style":262},[1168],{"type":66,"value":1169},"blog-posts",{"type":60,"tag":222,"props":1171,"children":1172},{"style":235},[1173],{"type":66,"value":269},{"type":60,"tag":222,"props":1175,"children":1176},{"style":403},[1177],{"type":66,"value":142},{"type":60,"tag":222,"props":1179,"children":1180},{"style":235},[1181],{"type":66,"value":274},{"type":60,"tag":222,"props":1183,"children":1184},{"class":224,"line":399},[1185],{"type":60,"tag":222,"props":1186,"children":1187},{"emptyLinePlaceholder":281},[1188],{"type":66,"value":284},{"type":60,"tag":222,"props":1190,"children":1191},{"class":224,"line":428},[1192,1197,1201,1206,1211],{"type":60,"tag":222,"props":1193,"children":1194},{"style":229},[1195],{"type":66,"value":1196},"    if",{"type":60,"tag":222,"props":1198,"children":1199},{"style":403},[1200],{"type":66,"value":930},{"type":60,"tag":222,"props":1202,"children":1203},{"style":241},[1204],{"type":66,"value":1205},"cached",{"type":60,"tag":222,"props":1207,"children":1208},{"style":403},[1209],{"type":66,"value":1210},") ",{"type":60,"tag":222,"props":1212,"children":1213},{"style":235},[1214],{"type":66,"value":846},{"type":60,"tag":222,"props":1216,"children":1217},{"class":224,"line":489},[1218,1223,1228,1232,1237,1241,1245,1249],{"type":60,"tag":222,"props":1219,"children":1220},{"style":229},[1221],{"type":66,"value":1222},"      return",{"type":60,"tag":222,"props":1224,"children":1225},{"style":241},[1226],{"type":66,"value":1227}," Response",{"type":60,"tag":222,"props":1229,"children":1230},{"style":235},[1231],{"type":66,"value":354},{"type":60,"tag":222,"props":1233,"children":1234},{"style":307},[1235],{"type":66,"value":1236},"json",{"type":60,"tag":222,"props":1238,"children":1239},{"style":403},[1240],{"type":66,"value":364},{"type":60,"tag":222,"props":1242,"children":1243},{"style":241},[1244],{"type":66,"value":1205},{"type":60,"tag":222,"props":1246,"children":1247},{"style":403},[1248],{"type":66,"value":142},{"type":60,"tag":222,"props":1250,"children":1251},{"style":235},[1252],{"type":66,"value":274},{"type":60,"tag":222,"props":1254,"children":1255},{"class":224,"line":524},[1256],{"type":60,"tag":222,"props":1257,"children":1258},{"style":235},[1259],{"type":66,"value":1260},"    }\n",{"type":60,"tag":222,"props":1262,"children":1263},{"class":224,"line":541},[1264],{"type":60,"tag":222,"props":1265,"children":1266},{"emptyLinePlaceholder":281},[1267],{"type":66,"value":284},{"type":60,"tag":222,"props":1269,"children":1270},{"class":224,"line":549},[1271,1275,1280,1284,1288,1292,1296,1300,1305,1309,1313,1317,1322,1326,1331,1335,1340,1344,1348,1353],{"type":60,"tag":222,"props":1272,"children":1273},{"style":291},[1274],{"type":66,"value":1103},{"type":60,"tag":222,"props":1276,"children":1277},{"style":241},[1278],{"type":66,"value":1279}," posts",{"type":60,"tag":222,"props":1281,"children":1282},{"style":235},[1283],{"type":66,"value":1112},{"type":60,"tag":222,"props":1285,"children":1286},{"style":229},[1287],{"type":66,"value":577},{"type":60,"tag":222,"props":1289,"children":1290},{"style":307},[1291],{"type":66,"value":1068},{"type":60,"tag":222,"props":1293,"children":1294},{"style":403},[1295],{"type":66,"value":364},{"type":60,"tag":222,"props":1297,"children":1298},{"style":235},[1299],{"type":66,"value":269},{"type":60,"tag":222,"props":1301,"children":1302},{"style":262},[1303],{"type":66,"value":1304},"https:\u002F\u002Fapi.example.com\u002Fposts",{"type":60,"tag":222,"props":1306,"children":1307},{"style":235},[1308],{"type":66,"value":269},{"type":60,"tag":222,"props":1310,"children":1311},{"style":403},[1312],{"type":66,"value":142},{"type":60,"tag":222,"props":1314,"children":1315},{"style":235},[1316],{"type":66,"value":354},{"type":60,"tag":222,"props":1318,"children":1319},{"style":307},[1320],{"type":66,"value":1321},"then",{"type":60,"tag":222,"props":1323,"children":1324},{"style":403},[1325],{"type":66,"value":364},{"type":60,"tag":222,"props":1327,"children":1328},{"style":933},[1329],{"type":66,"value":1330},"r",{"type":60,"tag":222,"props":1332,"children":1333},{"style":291},[1334],{"type":66,"value":945},{"type":60,"tag":222,"props":1336,"children":1337},{"style":241},[1338],{"type":66,"value":1339}," r",{"type":60,"tag":222,"props":1341,"children":1342},{"style":235},[1343],{"type":66,"value":354},{"type":60,"tag":222,"props":1345,"children":1346},{"style":307},[1347],{"type":66,"value":1236},{"type":60,"tag":222,"props":1349,"children":1350},{"style":403},[1351],{"type":66,"value":1352},"())",{"type":60,"tag":222,"props":1354,"children":1355},{"style":235},[1356],{"type":66,"value":274},{"type":60,"tag":222,"props":1358,"children":1359},{"class":224,"line":558},[1360],{"type":60,"tag":222,"props":1361,"children":1362},{"emptyLinePlaceholder":281},[1363],{"type":66,"value":284},{"type":60,"tag":222,"props":1365,"children":1366},{"class":224,"line":617},[1367,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412],{"type":60,"tag":222,"props":1368,"children":1369},{"style":229},[1370],{"type":66,"value":1371},"    await",{"type":60,"tag":222,"props":1373,"children":1374},{"style":241},[1375],{"type":66,"value":349},{"type":60,"tag":222,"props":1377,"children":1378},{"style":235},[1379],{"type":66,"value":354},{"type":60,"tag":222,"props":1381,"children":1382},{"style":307},[1383],{"type":66,"value":359},{"type":60,"tag":222,"props":1385,"children":1386},{"style":403},[1387],{"type":66,"value":364},{"type":60,"tag":222,"props":1389,"children":1390},{"style":235},[1391],{"type":66,"value":269},{"type":60,"tag":222,"props":1393,"children":1394},{"style":262},[1395],{"type":66,"value":1169},{"type":60,"tag":222,"props":1397,"children":1398},{"style":235},[1399],{"type":66,"value":269},{"type":60,"tag":222,"props":1401,"children":1402},{"style":235},[1403],{"type":66,"value":382},{"type":60,"tag":222,"props":1405,"children":1406},{"style":241},[1407],{"type":66,"value":1279},{"type":60,"tag":222,"props":1409,"children":1410},{"style":235},[1411],{"type":66,"value":382},{"type":60,"tag":222,"props":1413,"children":1414},{"style":235},[1415],{"type":66,"value":396},{"type":60,"tag":222,"props":1417,"children":1418},{"class":224,"line":625},[1419,1424,1428,1432],{"type":60,"tag":222,"props":1420,"children":1421},{"style":403},[1422],{"type":66,"value":1423},"      ttl",{"type":60,"tag":222,"props":1425,"children":1426},{"style":235},[1427],{"type":66,"value":202},{"type":60,"tag":222,"props":1429,"children":1430},{"style":413},[1431],{"type":66,"value":416},{"type":60,"tag":222,"props":1433,"children":1434},{"style":235},[1435],{"type":66,"value":1436},",\n",{"type":60,"tag":222,"props":1438,"children":1439},{"class":224,"line":634},[1440,1445,1449,1453,1457,1462,1466,1470],{"type":60,"tag":222,"props":1441,"children":1442},{"style":403},[1443],{"type":66,"value":1444},"      tags",{"type":60,"tag":222,"props":1446,"children":1447},{"style":235},[1448],{"type":66,"value":202},{"type":60,"tag":222,"props":1450,"children":1451},{"style":403},[1452],{"type":66,"value":443},{"type":60,"tag":222,"props":1454,"children":1455},{"style":235},[1456],{"type":66,"value":269},{"type":60,"tag":222,"props":1458,"children":1459},{"style":262},[1460],{"type":66,"value":1461},"blog",{"type":60,"tag":222,"props":1463,"children":1464},{"style":235},[1465],{"type":66,"value":269},{"type":60,"tag":222,"props":1467,"children":1468},{"style":403},[1469],{"type":66,"value":477},{"type":60,"tag":222,"props":1471,"children":1472},{"style":235},[1473],{"type":66,"value":1436},{"type":60,"tag":222,"props":1475,"children":1476},{"class":224,"line":679},[1477,1482,1486],{"type":60,"tag":222,"props":1478,"children":1479},{"style":235},[1480],{"type":66,"value":1481},"    }",{"type":60,"tag":222,"props":1483,"children":1484},{"style":403},[1485],{"type":66,"value":142},{"type":60,"tag":222,"props":1487,"children":1488},{"style":235},[1489],{"type":66,"value":274},{"type":60,"tag":222,"props":1491,"children":1492},{"class":224,"line":687},[1493],{"type":60,"tag":222,"props":1494,"children":1495},{"emptyLinePlaceholder":281},[1496],{"type":66,"value":284},{"type":60,"tag":222,"props":1498,"children":1499},{"class":224,"line":696},[1500,1505,1509,1513,1517,1521,1526,1530],{"type":60,"tag":222,"props":1501,"children":1502},{"style":229},[1503],{"type":66,"value":1504},"    return",{"type":60,"tag":222,"props":1506,"children":1507},{"style":241},[1508],{"type":66,"value":1227},{"type":60,"tag":222,"props":1510,"children":1511},{"style":235},[1512],{"type":66,"value":354},{"type":60,"tag":222,"props":1514,"children":1515},{"style":307},[1516],{"type":66,"value":1236},{"type":60,"tag":222,"props":1518,"children":1519},{"style":403},[1520],{"type":66,"value":364},{"type":60,"tag":222,"props":1522,"children":1523},{"style":241},[1524],{"type":66,"value":1525},"posts",{"type":60,"tag":222,"props":1527,"children":1528},{"style":403},[1529],{"type":66,"value":142},{"type":60,"tag":222,"props":1531,"children":1532},{"style":235},[1533],{"type":66,"value":274},{"type":60,"tag":222,"props":1535,"children":1536},{"class":224,"line":740},[1537],{"type":60,"tag":222,"props":1538,"children":1539},{"style":235},[1540],{"type":66,"value":1541},"  },\n",{"type":60,"tag":222,"props":1543,"children":1545},{"class":224,"line":1544},21,[1546],{"type":60,"tag":222,"props":1547,"children":1548},{"style":235},[1549],{"type":66,"value":1550},"};\n",{"type":60,"tag":204,"props":1552,"children":1554},{"id":1553},"tag-expiration-from-server-action",[1555],{"type":66,"value":1556},"Tag Expiration from Server Action",{"type":60,"tag":211,"props":1558,"children":1560},{"className":213,"code":1559,"language":215,"meta":216,"style":216},"'use server';\nimport { getCache } from '@vercel\u002Ffunctions';\n\nexport async function invalidateBlog() {\n  await getCache().expireTag('blog');\n}\n",[1561],{"type":60,"tag":127,"props":1562,"children":1563},{"__ignoreMap":216},[1564,1584,1623,1630,1660,1708],{"type":60,"tag":222,"props":1565,"children":1566},{"class":224,"line":225},[1567,1571,1576,1580],{"type":60,"tag":222,"props":1568,"children":1569},{"style":235},[1570],{"type":66,"value":269},{"type":60,"tag":222,"props":1572,"children":1573},{"style":262},[1574],{"type":66,"value":1575},"use server",{"type":60,"tag":222,"props":1577,"children":1578},{"style":235},[1579],{"type":66,"value":269},{"type":60,"tag":222,"props":1581,"children":1582},{"style":235},[1583],{"type":66,"value":274},{"type":60,"tag":222,"props":1585,"children":1586},{"class":224,"line":277},[1587,1591,1595,1599,1603,1607,1611,1615,1619],{"type":60,"tag":222,"props":1588,"children":1589},{"style":229},[1590],{"type":66,"value":232},{"type":60,"tag":222,"props":1592,"children":1593},{"style":235},[1594],{"type":66,"value":238},{"type":60,"tag":222,"props":1596,"children":1597},{"style":241},[1598],{"type":66,"value":244},{"type":60,"tag":222,"props":1600,"children":1601},{"style":235},[1602],{"type":66,"value":249},{"type":60,"tag":222,"props":1604,"children":1605},{"style":229},[1606],{"type":66,"value":254},{"type":60,"tag":222,"props":1608,"children":1609},{"style":235},[1610],{"type":66,"value":259},{"type":60,"tag":222,"props":1612,"children":1613},{"style":262},[1614],{"type":66,"value":184},{"type":60,"tag":222,"props":1616,"children":1617},{"style":235},[1618],{"type":66,"value":269},{"type":60,"tag":222,"props":1620,"children":1621},{"style":235},[1622],{"type":66,"value":274},{"type":60,"tag":222,"props":1624,"children":1625},{"class":224,"line":287},[1626],{"type":60,"tag":222,"props":1627,"children":1628},{"emptyLinePlaceholder":281},[1629],{"type":66,"value":284},{"type":60,"tag":222,"props":1631,"children":1632},{"class":224,"line":321},[1633,1637,1642,1647,1652,1656],{"type":60,"tag":222,"props":1634,"children":1635},{"style":229},[1636],{"type":66,"value":1046},{"type":60,"tag":222,"props":1638,"children":1639},{"style":291},[1640],{"type":66,"value":1641}," async",{"type":60,"tag":222,"props":1643,"children":1644},{"style":291},[1645],{"type":66,"value":1646}," function",{"type":60,"tag":222,"props":1648,"children":1649},{"style":307},[1650],{"type":66,"value":1651}," invalidateBlog",{"type":60,"tag":222,"props":1653,"children":1654},{"style":235},[1655],{"type":66,"value":314},{"type":60,"tag":222,"props":1657,"children":1658},{"style":235},[1659],{"type":66,"value":396},{"type":60,"tag":222,"props":1661,"children":1662},{"class":224,"line":329},[1663,1668,1672,1676,1680,1684,1688,1692,1696,1700,1704],{"type":60,"tag":222,"props":1664,"children":1665},{"style":229},[1666],{"type":66,"value":1667},"  await",{"type":60,"tag":222,"props":1669,"children":1670},{"style":307},[1671],{"type":66,"value":244},{"type":60,"tag":222,"props":1673,"children":1674},{"style":403},[1675],{"type":66,"value":314},{"type":60,"tag":222,"props":1677,"children":1678},{"style":235},[1679],{"type":66,"value":354},{"type":60,"tag":222,"props":1681,"children":1682},{"style":307},[1683],{"type":66,"value":158},{"type":60,"tag":222,"props":1685,"children":1686},{"style":403},[1687],{"type":66,"value":364},{"type":60,"tag":222,"props":1689,"children":1690},{"style":235},[1691],{"type":66,"value":269},{"type":60,"tag":222,"props":1693,"children":1694},{"style":262},[1695],{"type":66,"value":1461},{"type":60,"tag":222,"props":1697,"children":1698},{"style":235},[1699],{"type":66,"value":269},{"type":60,"tag":222,"props":1701,"children":1702},{"style":403},[1703],{"type":66,"value":142},{"type":60,"tag":222,"props":1705,"children":1706},{"style":235},[1707],{"type":66,"value":274},{"type":60,"tag":222,"props":1709,"children":1710},{"class":224,"line":42},[1711],{"type":60,"tag":222,"props":1712,"children":1713},{"style":235},[1714],{"type":66,"value":1715},"}\n",{"type":60,"tag":75,"props":1717,"children":1719},{"id":1718},"cdn-cache-purging-functions",[1720],{"type":66,"value":1721},"CDN Cache Purging Functions",{"type":60,"tag":69,"props":1723,"children":1724},{},[1725,1727,1732],{"type":66,"value":1726},"These purge across ",{"type":60,"tag":87,"props":1728,"children":1729},{},[1730],{"type":66,"value":1731},"all three cache layers",{"type":66,"value":1733}," (CDN + Runtime Cache + Data Cache):",{"type":60,"tag":211,"props":1735,"children":1737},{"className":213,"code":1736,"language":215,"meta":216,"style":216},"import { invalidateByTag, dangerouslyDeleteByTag } from '@vercel\u002Ffunctions';\n\n\u002F\u002F Stale-while-revalidate: serves stale, revalidates in background\nawait invalidateByTag('blog-posts');\n\n\u002F\u002F Hard delete: next request blocks while fetching from origin (cache stampede risk)\nawait dangerouslyDeleteByTag('blog-posts', {\n  revalidationDeadlineSeconds: 3600,\n});\n",[1738],{"type":60,"tag":127,"props":1739,"children":1740},{"__ignoreMap":216},[1741,1790,1797,1805,1840,1847,1855,1890,1910],{"type":60,"tag":222,"props":1742,"children":1743},{"class":224,"line":225},[1744,1748,1752,1757,1761,1766,1770,1774,1778,1782,1786],{"type":60,"tag":222,"props":1745,"children":1746},{"style":229},[1747],{"type":66,"value":232},{"type":60,"tag":222,"props":1749,"children":1750},{"style":235},[1751],{"type":66,"value":238},{"type":60,"tag":222,"props":1753,"children":1754},{"style":241},[1755],{"type":66,"value":1756}," invalidateByTag",{"type":60,"tag":222,"props":1758,"children":1759},{"style":235},[1760],{"type":66,"value":382},{"type":60,"tag":222,"props":1762,"children":1763},{"style":241},[1764],{"type":66,"value":1765}," dangerouslyDeleteByTag",{"type":60,"tag":222,"props":1767,"children":1768},{"style":235},[1769],{"type":66,"value":249},{"type":60,"tag":222,"props":1771,"children":1772},{"style":229},[1773],{"type":66,"value":254},{"type":60,"tag":222,"props":1775,"children":1776},{"style":235},[1777],{"type":66,"value":259},{"type":60,"tag":222,"props":1779,"children":1780},{"style":262},[1781],{"type":66,"value":184},{"type":60,"tag":222,"props":1783,"children":1784},{"style":235},[1785],{"type":66,"value":269},{"type":60,"tag":222,"props":1787,"children":1788},{"style":235},[1789],{"type":66,"value":274},{"type":60,"tag":222,"props":1791,"children":1792},{"class":224,"line":277},[1793],{"type":60,"tag":222,"props":1794,"children":1795},{"emptyLinePlaceholder":281},[1796],{"type":66,"value":284},{"type":60,"tag":222,"props":1798,"children":1799},{"class":224,"line":287},[1800],{"type":60,"tag":222,"props":1801,"children":1802},{"style":333},[1803],{"type":66,"value":1804},"\u002F\u002F Stale-while-revalidate: serves stale, revalidates in background\n",{"type":60,"tag":222,"props":1806,"children":1807},{"class":224,"line":321},[1808,1812,1816,1820,1824,1828,1832,1836],{"type":60,"tag":222,"props":1809,"children":1810},{"style":229},[1811],{"type":66,"value":344},{"type":60,"tag":222,"props":1813,"children":1814},{"style":307},[1815],{"type":66,"value":1756},{"type":60,"tag":222,"props":1817,"children":1818},{"style":241},[1819],{"type":66,"value":364},{"type":60,"tag":222,"props":1821,"children":1822},{"style":235},[1823],{"type":66,"value":269},{"type":60,"tag":222,"props":1825,"children":1826},{"style":262},[1827],{"type":66,"value":1169},{"type":60,"tag":222,"props":1829,"children":1830},{"style":235},[1831],{"type":66,"value":269},{"type":60,"tag":222,"props":1833,"children":1834},{"style":241},[1835],{"type":66,"value":142},{"type":60,"tag":222,"props":1837,"children":1838},{"style":235},[1839],{"type":66,"value":274},{"type":60,"tag":222,"props":1841,"children":1842},{"class":224,"line":329},[1843],{"type":60,"tag":222,"props":1844,"children":1845},{"emptyLinePlaceholder":281},[1846],{"type":66,"value":284},{"type":60,"tag":222,"props":1848,"children":1849},{"class":224,"line":42},[1850],{"type":60,"tag":222,"props":1851,"children":1852},{"style":333},[1853],{"type":66,"value":1854},"\u002F\u002F Hard delete: next request blocks while fetching from origin (cache stampede risk)\n",{"type":60,"tag":222,"props":1856,"children":1857},{"class":224,"line":399},[1858,1862,1866,1870,1874,1878,1882,1886],{"type":60,"tag":222,"props":1859,"children":1860},{"style":229},[1861],{"type":66,"value":344},{"type":60,"tag":222,"props":1863,"children":1864},{"style":307},[1865],{"type":66,"value":1765},{"type":60,"tag":222,"props":1867,"children":1868},{"style":241},[1869],{"type":66,"value":364},{"type":60,"tag":222,"props":1871,"children":1872},{"style":235},[1873],{"type":66,"value":269},{"type":60,"tag":222,"props":1875,"children":1876},{"style":262},[1877],{"type":66,"value":1169},{"type":60,"tag":222,"props":1879,"children":1880},{"style":235},[1881],{"type":66,"value":269},{"type":60,"tag":222,"props":1883,"children":1884},{"style":235},[1885],{"type":66,"value":382},{"type":60,"tag":222,"props":1887,"children":1888},{"style":235},[1889],{"type":66,"value":396},{"type":60,"tag":222,"props":1891,"children":1892},{"class":224,"line":428},[1893,1898,1902,1906],{"type":60,"tag":222,"props":1894,"children":1895},{"style":403},[1896],{"type":66,"value":1897},"  revalidationDeadlineSeconds",{"type":60,"tag":222,"props":1899,"children":1900},{"style":235},[1901],{"type":66,"value":202},{"type":60,"tag":222,"props":1903,"children":1904},{"style":413},[1905],{"type":66,"value":416},{"type":60,"tag":222,"props":1907,"children":1908},{"style":235},[1909],{"type":66,"value":1436},{"type":60,"tag":222,"props":1911,"children":1912},{"class":224,"line":489},[1913,1917,1921],{"type":60,"tag":222,"props":1914,"children":1915},{"style":235},[1916],{"type":66,"value":530},{"type":60,"tag":222,"props":1918,"children":1919},{"style":241},[1920],{"type":66,"value":142},{"type":60,"tag":222,"props":1922,"children":1923},{"style":235},[1924],{"type":66,"value":274},{"type":60,"tag":69,"props":1926,"children":1927},{},[1928,1933],{"type":60,"tag":87,"props":1929,"children":1930},{},[1931],{"type":66,"value":1932},"Important distinction",{"type":66,"value":202},{"type":60,"tag":102,"props":1935,"children":1936},{},[1937,1948],{"type":60,"tag":106,"props":1938,"children":1939},{},[1940,1946],{"type":60,"tag":127,"props":1941,"children":1943},{"className":1942},[],[1944],{"type":66,"value":1945},"cache.expireTag()",{"type":66,"value":1947}," — operates on Runtime Cache only",{"type":60,"tag":106,"props":1949,"children":1950},{},[1951,1957,1959,1965],{"type":60,"tag":127,"props":1952,"children":1954},{"className":1953},[],[1955],{"type":66,"value":1956},"invalidateByTag()",{"type":66,"value":1958}," \u002F ",{"type":60,"tag":127,"props":1960,"children":1962},{"className":1961},[],[1963],{"type":66,"value":1964},"dangerouslyDeleteByTag()",{"type":66,"value":1966}," — purges CDN + Runtime + Data caches",{"type":60,"tag":75,"props":1968,"children":1970},{"id":1969},"nextjs-integration",[1971],{"type":66,"value":1972},"Next.js Integration",{"type":60,"tag":204,"props":1974,"children":1976},{"id":1975},"nextjs-16-use-cache-remote",[1977,1979,1985],{"type":66,"value":1978},"Next.js 16+ (",{"type":60,"tag":127,"props":1980,"children":1982},{"className":1981},[],[1983],{"type":66,"value":1984},"use cache: remote",{"type":66,"value":142},{"type":60,"tag":211,"props":1987,"children":1989},{"className":213,"code":1988,"language":215,"meta":216,"style":216},"\u002F\u002F next.config.ts\nconst nextConfig: NextConfig = { cacheComponents: true };\n",[1990],{"type":60,"tag":127,"props":1991,"children":1992},{"__ignoreMap":216},[1993,2001],{"type":60,"tag":222,"props":1994,"children":1995},{"class":224,"line":225},[1996],{"type":60,"tag":222,"props":1997,"children":1998},{"style":333},[1999],{"type":66,"value":2000},"\u002F\u002F next.config.ts\n",{"type":60,"tag":222,"props":2002,"children":2003},{"class":224,"line":277},[2004,2008,2013,2017,2022,2026,2030,2035,2039,2045],{"type":60,"tag":222,"props":2005,"children":2006},{"style":291},[2007],{"type":66,"value":294},{"type":60,"tag":222,"props":2009,"children":2010},{"style":241},[2011],{"type":66,"value":2012}," nextConfig",{"type":60,"tag":222,"props":2014,"children":2015},{"style":235},[2016],{"type":66,"value":202},{"type":60,"tag":222,"props":2018,"children":2019},{"style":1084},[2020],{"type":66,"value":2021}," NextConfig",{"type":60,"tag":222,"props":2023,"children":2024},{"style":235},[2025],{"type":66,"value":1112},{"type":60,"tag":222,"props":2027,"children":2028},{"style":235},[2029],{"type":66,"value":238},{"type":60,"tag":222,"props":2031,"children":2032},{"style":403},[2033],{"type":66,"value":2034}," cacheComponents",{"type":60,"tag":222,"props":2036,"children":2037},{"style":235},[2038],{"type":66,"value":202},{"type":60,"tag":222,"props":2040,"children":2042},{"style":2041},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[2043],{"type":66,"value":2044}," true",{"type":60,"tag":222,"props":2046,"children":2047},{"style":235},[2048],{"type":66,"value":2049}," };\n",{"type":60,"tag":211,"props":2051,"children":2053},{"className":213,"code":2052,"language":215,"meta":216,"style":216},"import { cacheLife, cacheTag } from 'next\u002Fcache';\n\nasync function getData() {\n  'use cache: remote'     \u002F\u002F stores in Vercel Runtime Cache\n  cacheTag('example-tag')\n  cacheLife({ expire: 3600 })\n  return fetch('https:\u002F\u002Fapi.example.com\u002Fdata').then(r => r.json());\n}\n",[2054],{"type":60,"tag":127,"props":2055,"children":2056},{"__ignoreMap":216},[2057,2107,2114,2139,2160,2190,2228,2301],{"type":60,"tag":222,"props":2058,"children":2059},{"class":224,"line":225},[2060,2064,2068,2073,2077,2082,2086,2090,2094,2099,2103],{"type":60,"tag":222,"props":2061,"children":2062},{"style":229},[2063],{"type":66,"value":232},{"type":60,"tag":222,"props":2065,"children":2066},{"style":235},[2067],{"type":66,"value":238},{"type":60,"tag":222,"props":2069,"children":2070},{"style":241},[2071],{"type":66,"value":2072}," cacheLife",{"type":60,"tag":222,"props":2074,"children":2075},{"style":235},[2076],{"type":66,"value":382},{"type":60,"tag":222,"props":2078,"children":2079},{"style":241},[2080],{"type":66,"value":2081}," cacheTag",{"type":60,"tag":222,"props":2083,"children":2084},{"style":235},[2085],{"type":66,"value":249},{"type":60,"tag":222,"props":2087,"children":2088},{"style":229},[2089],{"type":66,"value":254},{"type":60,"tag":222,"props":2091,"children":2092},{"style":235},[2093],{"type":66,"value":259},{"type":60,"tag":222,"props":2095,"children":2096},{"style":262},[2097],{"type":66,"value":2098},"next\u002Fcache",{"type":60,"tag":222,"props":2100,"children":2101},{"style":235},[2102],{"type":66,"value":269},{"type":60,"tag":222,"props":2104,"children":2105},{"style":235},[2106],{"type":66,"value":274},{"type":60,"tag":222,"props":2108,"children":2109},{"class":224,"line":277},[2110],{"type":60,"tag":222,"props":2111,"children":2112},{"emptyLinePlaceholder":281},[2113],{"type":66,"value":284},{"type":60,"tag":222,"props":2115,"children":2116},{"class":224,"line":287},[2117,2122,2126,2131,2135],{"type":60,"tag":222,"props":2118,"children":2119},{"style":291},[2120],{"type":66,"value":2121},"async",{"type":60,"tag":222,"props":2123,"children":2124},{"style":291},[2125],{"type":66,"value":1646},{"type":60,"tag":222,"props":2127,"children":2128},{"style":307},[2129],{"type":66,"value":2130}," getData",{"type":60,"tag":222,"props":2132,"children":2133},{"style":235},[2134],{"type":66,"value":314},{"type":60,"tag":222,"props":2136,"children":2137},{"style":235},[2138],{"type":66,"value":396},{"type":60,"tag":222,"props":2140,"children":2141},{"class":224,"line":321},[2142,2147,2151,2155],{"type":60,"tag":222,"props":2143,"children":2144},{"style":235},[2145],{"type":66,"value":2146},"  '",{"type":60,"tag":222,"props":2148,"children":2149},{"style":262},[2150],{"type":66,"value":1984},{"type":60,"tag":222,"props":2152,"children":2153},{"style":235},[2154],{"type":66,"value":269},{"type":60,"tag":222,"props":2156,"children":2157},{"style":333},[2158],{"type":66,"value":2159},"     \u002F\u002F stores in Vercel Runtime Cache\n",{"type":60,"tag":222,"props":2161,"children":2162},{"class":224,"line":329},[2163,2168,2172,2176,2181,2185],{"type":60,"tag":222,"props":2164,"children":2165},{"style":307},[2166],{"type":66,"value":2167},"  cacheTag",{"type":60,"tag":222,"props":2169,"children":2170},{"style":403},[2171],{"type":66,"value":364},{"type":60,"tag":222,"props":2173,"children":2174},{"style":235},[2175],{"type":66,"value":269},{"type":60,"tag":222,"props":2177,"children":2178},{"style":262},[2179],{"type":66,"value":2180},"example-tag",{"type":60,"tag":222,"props":2182,"children":2183},{"style":235},[2184],{"type":66,"value":269},{"type":60,"tag":222,"props":2186,"children":2187},{"style":403},[2188],{"type":66,"value":2189},")\n",{"type":60,"tag":222,"props":2191,"children":2192},{"class":224,"line":42},[2193,2198,2202,2207,2212,2216,2220,2224],{"type":60,"tag":222,"props":2194,"children":2195},{"style":307},[2196],{"type":66,"value":2197},"  cacheLife",{"type":60,"tag":222,"props":2199,"children":2200},{"style":403},[2201],{"type":66,"value":364},{"type":60,"tag":222,"props":2203,"children":2204},{"style":235},[2205],{"type":66,"value":2206},"{",{"type":60,"tag":222,"props":2208,"children":2209},{"style":403},[2210],{"type":66,"value":2211}," expire",{"type":60,"tag":222,"props":2213,"children":2214},{"style":235},[2215],{"type":66,"value":202},{"type":60,"tag":222,"props":2217,"children":2218},{"style":413},[2219],{"type":66,"value":416},{"type":60,"tag":222,"props":2221,"children":2222},{"style":235},[2223],{"type":66,"value":249},{"type":60,"tag":222,"props":2225,"children":2226},{"style":403},[2227],{"type":66,"value":2189},{"type":60,"tag":222,"props":2229,"children":2230},{"class":224,"line":399},[2231,2236,2240,2244,2248,2253,2257,2261,2265,2269,2273,2277,2281,2285,2289,2293,2297],{"type":60,"tag":222,"props":2232,"children":2233},{"style":229},[2234],{"type":66,"value":2235},"  return",{"type":60,"tag":222,"props":2237,"children":2238},{"style":307},[2239],{"type":66,"value":1068},{"type":60,"tag":222,"props":2241,"children":2242},{"style":403},[2243],{"type":66,"value":364},{"type":60,"tag":222,"props":2245,"children":2246},{"style":235},[2247],{"type":66,"value":269},{"type":60,"tag":222,"props":2249,"children":2250},{"style":262},[2251],{"type":66,"value":2252},"https:\u002F\u002Fapi.example.com\u002Fdata",{"type":60,"tag":222,"props":2254,"children":2255},{"style":235},[2256],{"type":66,"value":269},{"type":60,"tag":222,"props":2258,"children":2259},{"style":403},[2260],{"type":66,"value":142},{"type":60,"tag":222,"props":2262,"children":2263},{"style":235},[2264],{"type":66,"value":354},{"type":60,"tag":222,"props":2266,"children":2267},{"style":307},[2268],{"type":66,"value":1321},{"type":60,"tag":222,"props":2270,"children":2271},{"style":403},[2272],{"type":66,"value":364},{"type":60,"tag":222,"props":2274,"children":2275},{"style":933},[2276],{"type":66,"value":1330},{"type":60,"tag":222,"props":2278,"children":2279},{"style":291},[2280],{"type":66,"value":945},{"type":60,"tag":222,"props":2282,"children":2283},{"style":241},[2284],{"type":66,"value":1339},{"type":60,"tag":222,"props":2286,"children":2287},{"style":235},[2288],{"type":66,"value":354},{"type":60,"tag":222,"props":2290,"children":2291},{"style":307},[2292],{"type":66,"value":1236},{"type":60,"tag":222,"props":2294,"children":2295},{"style":403},[2296],{"type":66,"value":1352},{"type":60,"tag":222,"props":2298,"children":2299},{"style":235},[2300],{"type":66,"value":274},{"type":60,"tag":222,"props":2302,"children":2303},{"class":224,"line":428},[2304],{"type":60,"tag":222,"props":2305,"children":2306},{"style":235},[2307],{"type":66,"value":1715},{"type":60,"tag":102,"props":2309,"children":2310},{},[2311,2330],{"type":60,"tag":106,"props":2312,"children":2313},{},[2314,2320,2322,2328],{"type":60,"tag":127,"props":2315,"children":2317},{"className":2316},[],[2318],{"type":66,"value":2319},"'use cache'",{"type":66,"value":2321}," (no ",{"type":60,"tag":127,"props":2323,"children":2325},{"className":2324},[],[2326],{"type":66,"value":2327},": remote",{"type":66,"value":2329},") — in-memory only, ephemeral per instance",{"type":60,"tag":106,"props":2331,"children":2332},{},[2333,2339],{"type":60,"tag":127,"props":2334,"children":2336},{"className":2335},[],[2337],{"type":66,"value":2338},"'use cache: remote'",{"type":66,"value":2340}," — stores in Vercel Runtime Cache",{"type":60,"tag":204,"props":2342,"children":2344},{"id":2343},"nextjs-16-invalidation-apis",[2345],{"type":66,"value":2346},"Next.js 16 Invalidation APIs",{"type":60,"tag":2348,"props":2349,"children":2350},"table",{},[2351,2375],{"type":60,"tag":2352,"props":2353,"children":2354},"thead",{},[2355],{"type":60,"tag":2356,"props":2357,"children":2358},"tr",{},[2359,2365,2370],{"type":60,"tag":2360,"props":2361,"children":2362},"th",{},[2363],{"type":66,"value":2364},"Function",{"type":60,"tag":2360,"props":2366,"children":2367},{},[2368],{"type":66,"value":2369},"Context",{"type":60,"tag":2360,"props":2371,"children":2372},{},[2373],{"type":66,"value":2374},"Behavior",{"type":60,"tag":2376,"props":2377,"children":2378},"tbody",{},[2379,2402,2424],{"type":60,"tag":2356,"props":2380,"children":2381},{},[2382,2392,2397],{"type":60,"tag":2383,"props":2384,"children":2385},"td",{},[2386],{"type":60,"tag":127,"props":2387,"children":2389},{"className":2388},[],[2390],{"type":66,"value":2391},"updateTag(tag)",{"type":60,"tag":2383,"props":2393,"children":2394},{},[2395],{"type":66,"value":2396},"Server Actions only",{"type":60,"tag":2383,"props":2398,"children":2399},{},[2400],{"type":66,"value":2401},"Immediate expiration, read-your-own-writes",{"type":60,"tag":2356,"props":2403,"children":2404},{},[2405,2414,2419],{"type":60,"tag":2383,"props":2406,"children":2407},{},[2408],{"type":60,"tag":127,"props":2409,"children":2411},{"className":2410},[],[2412],{"type":66,"value":2413},"revalidateTag(tag, 'max')",{"type":60,"tag":2383,"props":2415,"children":2416},{},[2417],{"type":66,"value":2418},"Server Actions + Route Handlers",{"type":60,"tag":2383,"props":2420,"children":2421},{},[2422],{"type":66,"value":2423},"Stale-while-revalidate (recommended)",{"type":60,"tag":2356,"props":2425,"children":2426},{},[2427,2436,2441],{"type":60,"tag":2383,"props":2428,"children":2429},{},[2430],{"type":60,"tag":127,"props":2431,"children":2433},{"className":2432},[],[2434],{"type":66,"value":2435},"revalidateTag(tag, { expire: 0 })",{"type":60,"tag":2383,"props":2437,"children":2438},{},[2439],{"type":66,"value":2440},"Route Handlers (webhooks)",{"type":60,"tag":2383,"props":2442,"children":2443},{},[2444],{"type":66,"value":2445},"Immediate expiration from external triggers",{"type":60,"tag":69,"props":2447,"children":2448},{},[2449,2454,2456,2462,2464,2470],{"type":60,"tag":87,"props":2450,"children":2451},{},[2452],{"type":66,"value":2453},"Important",{"type":66,"value":2455},": Single-argument ",{"type":60,"tag":127,"props":2457,"children":2459},{"className":2458},[],[2460],{"type":66,"value":2461},"revalidateTag(tag)",{"type":66,"value":2463}," is deprecated in Next.js 16. Always pass a ",{"type":60,"tag":127,"props":2465,"children":2467},{"className":2466},[],[2468],{"type":66,"value":2469},"cacheLife",{"type":66,"value":2471}," profile as the second argument.",{"type":60,"tag":204,"props":2473,"children":2475},{"id":2474},"runtime-cache-vs-isr-isolation",[2476],{"type":66,"value":2477},"Runtime Cache vs ISR Isolation",{"type":60,"tag":102,"props":2479,"children":2480},{},[2481,2493,2510,2535],{"type":60,"tag":106,"props":2482,"children":2483},{},[2484,2486,2491],{"type":66,"value":2485},"Runtime Cache tags do ",{"type":60,"tag":87,"props":2487,"children":2488},{},[2489],{"type":66,"value":2490},"NOT",{"type":66,"value":2492}," apply to ISR pages",{"type":60,"tag":106,"props":2494,"children":2495},{},[2496,2502,2504,2508],{"type":60,"tag":127,"props":2497,"children":2499},{"className":2498},[],[2500],{"type":66,"value":2501},"cache.expireTag",{"type":66,"value":2503}," does ",{"type":60,"tag":87,"props":2505,"children":2506},{},[2507],{"type":66,"value":2490},{"type":66,"value":2509}," invalidate ISR cache",{"type":60,"tag":106,"props":2511,"children":2512},{},[2513,2515,2521,2522,2528,2529,2533],{"type":66,"value":2514},"Next.js ",{"type":60,"tag":127,"props":2516,"children":2518},{"className":2517},[],[2519],{"type":66,"value":2520},"revalidatePath",{"type":66,"value":1958},{"type":60,"tag":127,"props":2523,"children":2525},{"className":2524},[],[2526],{"type":66,"value":2527},"revalidateTag",{"type":66,"value":2503},{"type":60,"tag":87,"props":2530,"children":2531},{},[2532],{"type":66,"value":2490},{"type":66,"value":2534}," invalidate Runtime Cache",{"type":60,"tag":106,"props":2536,"children":2537},{},[2538,2540,2546],{"type":66,"value":2539},"To manage both, use same tag and purge via ",{"type":60,"tag":127,"props":2541,"children":2543},{"className":2542},[],[2544],{"type":66,"value":2545},"invalidateByTag",{"type":66,"value":2547}," (hits all cache layers)",{"type":60,"tag":75,"props":2549,"children":2551},{"id":2550},"cli-cache-commands",[2552],{"type":66,"value":2553},"CLI Cache Commands",{"type":60,"tag":211,"props":2555,"children":2559},{"className":2556,"code":2557,"language":2558,"meta":216,"style":216},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Purge all cached data\nvercel cache purge                    # CDN + Data cache\nvercel cache purge --type cdn         # CDN only\nvercel cache purge --type data        # Data cache only\nvercel cache purge --yes              # skip confirmation\n\n# Invalidate by tag (stale-while-revalidate)\nvercel cache invalidate --tag blog-posts,user-profiles\n\n# Hard delete by tag (blocks until revalidated)\nvercel cache dangerously-delete --tag blog-posts\nvercel cache dangerously-delete --tag blog-posts --revalidation-deadline-seconds 3600\n\n# Image invalidation\nvercel cache invalidate --srcimg \u002Fimages\u002Fhero.jpg\n","bash",[2560],{"type":60,"tag":127,"props":2561,"children":2562},{"__ignoreMap":216},[2563,2571,2592,2622,2651,2676,2683,2691,2717,2724,2732,2757,2791,2798,2806],{"type":60,"tag":222,"props":2564,"children":2565},{"class":224,"line":225},[2566],{"type":60,"tag":222,"props":2567,"children":2568},{"style":333},[2569],{"type":66,"value":2570},"# Purge all cached data\n",{"type":60,"tag":222,"props":2572,"children":2573},{"class":224,"line":277},[2574,2578,2582,2587],{"type":60,"tag":222,"props":2575,"children":2576},{"style":1084},[2577],{"type":66,"value":18},{"type":60,"tag":222,"props":2579,"children":2580},{"style":262},[2581],{"type":66,"value":349},{"type":60,"tag":222,"props":2583,"children":2584},{"style":262},[2585],{"type":66,"value":2586}," purge",{"type":60,"tag":222,"props":2588,"children":2589},{"style":333},[2590],{"type":66,"value":2591},"                    # CDN + Data cache\n",{"type":60,"tag":222,"props":2593,"children":2594},{"class":224,"line":287},[2595,2599,2603,2607,2612,2617],{"type":60,"tag":222,"props":2596,"children":2597},{"style":1084},[2598],{"type":66,"value":18},{"type":60,"tag":222,"props":2600,"children":2601},{"style":262},[2602],{"type":66,"value":349},{"type":60,"tag":222,"props":2604,"children":2605},{"style":262},[2606],{"type":66,"value":2586},{"type":60,"tag":222,"props":2608,"children":2609},{"style":262},[2610],{"type":66,"value":2611}," --type",{"type":60,"tag":222,"props":2613,"children":2614},{"style":262},[2615],{"type":66,"value":2616}," cdn",{"type":60,"tag":222,"props":2618,"children":2619},{"style":333},[2620],{"type":66,"value":2621},"         # CDN only\n",{"type":60,"tag":222,"props":2623,"children":2624},{"class":224,"line":321},[2625,2629,2633,2637,2641,2646],{"type":60,"tag":222,"props":2626,"children":2627},{"style":1084},[2628],{"type":66,"value":18},{"type":60,"tag":222,"props":2630,"children":2631},{"style":262},[2632],{"type":66,"value":349},{"type":60,"tag":222,"props":2634,"children":2635},{"style":262},[2636],{"type":66,"value":2586},{"type":60,"tag":222,"props":2638,"children":2639},{"style":262},[2640],{"type":66,"value":2611},{"type":60,"tag":222,"props":2642,"children":2643},{"style":262},[2644],{"type":66,"value":2645}," data",{"type":60,"tag":222,"props":2647,"children":2648},{"style":333},[2649],{"type":66,"value":2650},"        # Data cache only\n",{"type":60,"tag":222,"props":2652,"children":2653},{"class":224,"line":329},[2654,2658,2662,2666,2671],{"type":60,"tag":222,"props":2655,"children":2656},{"style":1084},[2657],{"type":66,"value":18},{"type":60,"tag":222,"props":2659,"children":2660},{"style":262},[2661],{"type":66,"value":349},{"type":60,"tag":222,"props":2663,"children":2664},{"style":262},[2665],{"type":66,"value":2586},{"type":60,"tag":222,"props":2667,"children":2668},{"style":262},[2669],{"type":66,"value":2670}," --yes",{"type":60,"tag":222,"props":2672,"children":2673},{"style":333},[2674],{"type":66,"value":2675},"              # skip confirmation\n",{"type":60,"tag":222,"props":2677,"children":2678},{"class":224,"line":42},[2679],{"type":60,"tag":222,"props":2680,"children":2681},{"emptyLinePlaceholder":281},[2682],{"type":66,"value":284},{"type":60,"tag":222,"props":2684,"children":2685},{"class":224,"line":399},[2686],{"type":60,"tag":222,"props":2687,"children":2688},{"style":333},[2689],{"type":66,"value":2690},"# Invalidate by tag (stale-while-revalidate)\n",{"type":60,"tag":222,"props":2692,"children":2693},{"class":224,"line":428},[2694,2698,2702,2707,2712],{"type":60,"tag":222,"props":2695,"children":2696},{"style":1084},[2697],{"type":66,"value":18},{"type":60,"tag":222,"props":2699,"children":2700},{"style":262},[2701],{"type":66,"value":349},{"type":60,"tag":222,"props":2703,"children":2704},{"style":262},[2705],{"type":66,"value":2706}," invalidate",{"type":60,"tag":222,"props":2708,"children":2709},{"style":262},[2710],{"type":66,"value":2711}," --tag",{"type":60,"tag":222,"props":2713,"children":2714},{"style":262},[2715],{"type":66,"value":2716}," blog-posts,user-profiles\n",{"type":60,"tag":222,"props":2718,"children":2719},{"class":224,"line":489},[2720],{"type":60,"tag":222,"props":2721,"children":2722},{"emptyLinePlaceholder":281},[2723],{"type":66,"value":284},{"type":60,"tag":222,"props":2725,"children":2726},{"class":224,"line":524},[2727],{"type":60,"tag":222,"props":2728,"children":2729},{"style":333},[2730],{"type":66,"value":2731},"# Hard delete by tag (blocks until revalidated)\n",{"type":60,"tag":222,"props":2733,"children":2734},{"class":224,"line":541},[2735,2739,2743,2748,2752],{"type":60,"tag":222,"props":2736,"children":2737},{"style":1084},[2738],{"type":66,"value":18},{"type":60,"tag":222,"props":2740,"children":2741},{"style":262},[2742],{"type":66,"value":349},{"type":60,"tag":222,"props":2744,"children":2745},{"style":262},[2746],{"type":66,"value":2747}," dangerously-delete",{"type":60,"tag":222,"props":2749,"children":2750},{"style":262},[2751],{"type":66,"value":2711},{"type":60,"tag":222,"props":2753,"children":2754},{"style":262},[2755],{"type":66,"value":2756}," blog-posts\n",{"type":60,"tag":222,"props":2758,"children":2759},{"class":224,"line":549},[2760,2764,2768,2772,2776,2781,2786],{"type":60,"tag":222,"props":2761,"children":2762},{"style":1084},[2763],{"type":66,"value":18},{"type":60,"tag":222,"props":2765,"children":2766},{"style":262},[2767],{"type":66,"value":349},{"type":60,"tag":222,"props":2769,"children":2770},{"style":262},[2771],{"type":66,"value":2747},{"type":60,"tag":222,"props":2773,"children":2774},{"style":262},[2775],{"type":66,"value":2711},{"type":60,"tag":222,"props":2777,"children":2778},{"style":262},[2779],{"type":66,"value":2780}," blog-posts",{"type":60,"tag":222,"props":2782,"children":2783},{"style":262},[2784],{"type":66,"value":2785}," --revalidation-deadline-seconds",{"type":60,"tag":222,"props":2787,"children":2788},{"style":413},[2789],{"type":66,"value":2790}," 3600\n",{"type":60,"tag":222,"props":2792,"children":2793},{"class":224,"line":558},[2794],{"type":60,"tag":222,"props":2795,"children":2796},{"emptyLinePlaceholder":281},[2797],{"type":66,"value":284},{"type":60,"tag":222,"props":2799,"children":2800},{"class":224,"line":617},[2801],{"type":60,"tag":222,"props":2802,"children":2803},{"style":333},[2804],{"type":66,"value":2805},"# Image invalidation\n",{"type":60,"tag":222,"props":2807,"children":2808},{"class":224,"line":625},[2809,2813,2817,2821,2826],{"type":60,"tag":222,"props":2810,"children":2811},{"style":1084},[2812],{"type":66,"value":18},{"type":60,"tag":222,"props":2814,"children":2815},{"style":262},[2816],{"type":66,"value":349},{"type":60,"tag":222,"props":2818,"children":2819},{"style":262},[2820],{"type":66,"value":2706},{"type":60,"tag":222,"props":2822,"children":2823},{"style":262},[2824],{"type":66,"value":2825}," --srcimg",{"type":60,"tag":222,"props":2827,"children":2828},{"style":262},[2829],{"type":66,"value":2830}," \u002Fimages\u002Fhero.jpg\n",{"type":60,"tag":69,"props":2832,"children":2833},{},[2834,2836,2842,2844,2850],{"type":66,"value":2835},"Note: ",{"type":60,"tag":127,"props":2837,"children":2839},{"className":2838},[],[2840],{"type":66,"value":2841},"--tag",{"type":66,"value":2843}," and ",{"type":60,"tag":127,"props":2845,"children":2847},{"className":2846},[],[2848],{"type":66,"value":2849},"--srcimg",{"type":66,"value":2851}," cannot be used together.",{"type":60,"tag":75,"props":2853,"children":2855},{"id":2854},"cdn-cache-tags",[2856],{"type":66,"value":2857},"CDN Cache Tags",{"type":60,"tag":69,"props":2859,"children":2860},{},[2861],{"type":66,"value":2862},"Add tags to CDN cached responses for later invalidation:",{"type":60,"tag":211,"props":2864,"children":2866},{"className":213,"code":2865,"language":215,"meta":216,"style":216},"import { addCacheTag } from '@vercel\u002Ffunctions';\n\n\u002F\u002F Via helper\naddCacheTag('product-123');\n\n\u002F\u002F Via response header\nreturn Response.json(product, {\n  headers: {\n    'Vercel-CDN-Cache-Control': 'public, max-age=86400',\n    'Vercel-Cache-Tag': 'product-123,products',\n  },\n});\n",[2867],{"type":60,"tag":127,"props":2868,"children":2869},{"__ignoreMap":216},[2870,2910,2917,2925,2958,2965,2973,3006,3022,3060,3097,3104],{"type":60,"tag":222,"props":2871,"children":2872},{"class":224,"line":225},[2873,2877,2881,2886,2890,2894,2898,2902,2906],{"type":60,"tag":222,"props":2874,"children":2875},{"style":229},[2876],{"type":66,"value":232},{"type":60,"tag":222,"props":2878,"children":2879},{"style":235},[2880],{"type":66,"value":238},{"type":60,"tag":222,"props":2882,"children":2883},{"style":241},[2884],{"type":66,"value":2885}," addCacheTag",{"type":60,"tag":222,"props":2887,"children":2888},{"style":235},[2889],{"type":66,"value":249},{"type":60,"tag":222,"props":2891,"children":2892},{"style":229},[2893],{"type":66,"value":254},{"type":60,"tag":222,"props":2895,"children":2896},{"style":235},[2897],{"type":66,"value":259},{"type":60,"tag":222,"props":2899,"children":2900},{"style":262},[2901],{"type":66,"value":184},{"type":60,"tag":222,"props":2903,"children":2904},{"style":235},[2905],{"type":66,"value":269},{"type":60,"tag":222,"props":2907,"children":2908},{"style":235},[2909],{"type":66,"value":274},{"type":60,"tag":222,"props":2911,"children":2912},{"class":224,"line":277},[2913],{"type":60,"tag":222,"props":2914,"children":2915},{"emptyLinePlaceholder":281},[2916],{"type":66,"value":284},{"type":60,"tag":222,"props":2918,"children":2919},{"class":224,"line":287},[2920],{"type":60,"tag":222,"props":2921,"children":2922},{"style":333},[2923],{"type":66,"value":2924},"\u002F\u002F Via helper\n",{"type":60,"tag":222,"props":2926,"children":2927},{"class":224,"line":321},[2928,2933,2937,2941,2946,2950,2954],{"type":60,"tag":222,"props":2929,"children":2930},{"style":307},[2931],{"type":66,"value":2932},"addCacheTag",{"type":60,"tag":222,"props":2934,"children":2935},{"style":241},[2936],{"type":66,"value":364},{"type":60,"tag":222,"props":2938,"children":2939},{"style":235},[2940],{"type":66,"value":269},{"type":60,"tag":222,"props":2942,"children":2943},{"style":262},[2944],{"type":66,"value":2945},"product-123",{"type":60,"tag":222,"props":2947,"children":2948},{"style":235},[2949],{"type":66,"value":269},{"type":60,"tag":222,"props":2951,"children":2952},{"style":241},[2953],{"type":66,"value":142},{"type":60,"tag":222,"props":2955,"children":2956},{"style":235},[2957],{"type":66,"value":274},{"type":60,"tag":222,"props":2959,"children":2960},{"class":224,"line":329},[2961],{"type":60,"tag":222,"props":2962,"children":2963},{"emptyLinePlaceholder":281},[2964],{"type":66,"value":284},{"type":60,"tag":222,"props":2966,"children":2967},{"class":224,"line":42},[2968],{"type":60,"tag":222,"props":2969,"children":2970},{"style":333},[2971],{"type":66,"value":2972},"\u002F\u002F Via response header\n",{"type":60,"tag":222,"props":2974,"children":2975},{"class":224,"line":399},[2976,2981,2985,2989,2993,2998,3002],{"type":60,"tag":222,"props":2977,"children":2978},{"style":229},[2979],{"type":66,"value":2980},"return",{"type":60,"tag":222,"props":2982,"children":2983},{"style":241},[2984],{"type":66,"value":1227},{"type":60,"tag":222,"props":2986,"children":2987},{"style":235},[2988],{"type":66,"value":354},{"type":60,"tag":222,"props":2990,"children":2991},{"style":307},[2992],{"type":66,"value":1236},{"type":60,"tag":222,"props":2994,"children":2995},{"style":241},[2996],{"type":66,"value":2997},"(product",{"type":60,"tag":222,"props":2999,"children":3000},{"style":235},[3001],{"type":66,"value":382},{"type":60,"tag":222,"props":3003,"children":3004},{"style":235},[3005],{"type":66,"value":396},{"type":60,"tag":222,"props":3007,"children":3008},{"class":224,"line":428},[3009,3014,3018],{"type":60,"tag":222,"props":3010,"children":3011},{"style":403},[3012],{"type":66,"value":3013},"  headers",{"type":60,"tag":222,"props":3015,"children":3016},{"style":235},[3017],{"type":66,"value":202},{"type":60,"tag":222,"props":3019,"children":3020},{"style":235},[3021],{"type":66,"value":396},{"type":60,"tag":222,"props":3023,"children":3024},{"class":224,"line":489},[3025,3030,3035,3039,3043,3047,3052,3056],{"type":60,"tag":222,"props":3026,"children":3027},{"style":235},[3028],{"type":66,"value":3029},"    '",{"type":60,"tag":222,"props":3031,"children":3032},{"style":403},[3033],{"type":66,"value":3034},"Vercel-CDN-Cache-Control",{"type":60,"tag":222,"props":3036,"children":3037},{"style":235},[3038],{"type":66,"value":269},{"type":60,"tag":222,"props":3040,"children":3041},{"style":235},[3042],{"type":66,"value":202},{"type":60,"tag":222,"props":3044,"children":3045},{"style":235},[3046],{"type":66,"value":259},{"type":60,"tag":222,"props":3048,"children":3049},{"style":262},[3050],{"type":66,"value":3051},"public, max-age=86400",{"type":60,"tag":222,"props":3053,"children":3054},{"style":235},[3055],{"type":66,"value":269},{"type":60,"tag":222,"props":3057,"children":3058},{"style":235},[3059],{"type":66,"value":1436},{"type":60,"tag":222,"props":3061,"children":3062},{"class":224,"line":524},[3063,3067,3072,3076,3080,3084,3089,3093],{"type":60,"tag":222,"props":3064,"children":3065},{"style":235},[3066],{"type":66,"value":3029},{"type":60,"tag":222,"props":3068,"children":3069},{"style":403},[3070],{"type":66,"value":3071},"Vercel-Cache-Tag",{"type":60,"tag":222,"props":3073,"children":3074},{"style":235},[3075],{"type":66,"value":269},{"type":60,"tag":222,"props":3077,"children":3078},{"style":235},[3079],{"type":66,"value":202},{"type":60,"tag":222,"props":3081,"children":3082},{"style":235},[3083],{"type":66,"value":259},{"type":60,"tag":222,"props":3085,"children":3086},{"style":262},[3087],{"type":66,"value":3088},"product-123,products",{"type":60,"tag":222,"props":3090,"children":3091},{"style":235},[3092],{"type":66,"value":269},{"type":60,"tag":222,"props":3094,"children":3095},{"style":235},[3096],{"type":66,"value":1436},{"type":60,"tag":222,"props":3098,"children":3099},{"class":224,"line":541},[3100],{"type":60,"tag":222,"props":3101,"children":3102},{"style":235},[3103],{"type":66,"value":1541},{"type":60,"tag":222,"props":3105,"children":3106},{"class":224,"line":549},[3107,3111,3115],{"type":60,"tag":222,"props":3108,"children":3109},{"style":235},[3110],{"type":66,"value":530},{"type":60,"tag":222,"props":3112,"children":3113},{"style":241},[3114],{"type":66,"value":142},{"type":60,"tag":222,"props":3116,"children":3117},{"style":235},[3118],{"type":66,"value":274},{"type":60,"tag":75,"props":3120,"children":3122},{"id":3121},"limits",[3123],{"type":66,"value":3124},"Limits",{"type":60,"tag":2348,"props":3126,"children":3127},{},[3128,3144],{"type":60,"tag":2352,"props":3129,"children":3130},{},[3131],{"type":60,"tag":2356,"props":3132,"children":3133},{},[3134,3139],{"type":60,"tag":2360,"props":3135,"children":3136},{},[3137],{"type":66,"value":3138},"Property",{"type":60,"tag":2360,"props":3140,"children":3141},{},[3142],{"type":66,"value":3143},"Limit",{"type":60,"tag":2376,"props":3145,"children":3146},{},[3147,3160,3173,3186,3199],{"type":60,"tag":2356,"props":3148,"children":3149},{},[3150,3155],{"type":60,"tag":2383,"props":3151,"children":3152},{},[3153],{"type":66,"value":3154},"Item size",{"type":60,"tag":2383,"props":3156,"children":3157},{},[3158],{"type":66,"value":3159},"2 MB",{"type":60,"tag":2356,"props":3161,"children":3162},{},[3163,3168],{"type":60,"tag":2383,"props":3164,"children":3165},{},[3166],{"type":66,"value":3167},"Tags per Runtime Cache item",{"type":60,"tag":2383,"props":3169,"children":3170},{},[3171],{"type":66,"value":3172},"64",{"type":60,"tag":2356,"props":3174,"children":3175},{},[3176,3181],{"type":60,"tag":2383,"props":3177,"children":3178},{},[3179],{"type":66,"value":3180},"Tags per CDN item",{"type":60,"tag":2383,"props":3182,"children":3183},{},[3184],{"type":66,"value":3185},"128",{"type":60,"tag":2356,"props":3187,"children":3188},{},[3189,3194],{"type":60,"tag":2383,"props":3190,"children":3191},{},[3192],{"type":66,"value":3193},"Max tag length",{"type":60,"tag":2383,"props":3195,"children":3196},{},[3197],{"type":66,"value":3198},"256 bytes",{"type":60,"tag":2356,"props":3200,"children":3201},{},[3202,3207],{"type":60,"tag":2383,"props":3203,"children":3204},{},[3205],{"type":66,"value":3206},"Tags per bulk REST API call",{"type":60,"tag":2383,"props":3208,"children":3209},{},[3210],{"type":66,"value":3211},"16",{"type":60,"tag":69,"props":3213,"children":3214},{},[3215,3217,3222,3223,3228],{"type":66,"value":3216},"Tags are ",{"type":60,"tag":87,"props":3218,"children":3219},{},[3220],{"type":66,"value":3221},"case-sensitive",{"type":66,"value":2843},{"type":60,"tag":87,"props":3224,"children":3225},{},[3226],{"type":66,"value":3227},"cannot contain commas",{"type":66,"value":354},{"type":60,"tag":75,"props":3230,"children":3232},{"id":3231},"observability",[3233],{"type":66,"value":3234},"Observability",{"type":60,"tag":69,"props":3236,"children":3237},{},[3238,3240,3245,3247,3252],{"type":66,"value":3239},"Monitor hit rates, invalidation patterns, and storage usage in the Vercel Dashboard under ",{"type":60,"tag":87,"props":3241,"children":3242},{},[3243],{"type":66,"value":3244},"Observability → Runtime Cache",{"type":66,"value":3246},". The CDN dashboard (March 5, 2026) provides a unified view of global traffic distribution, cache performance metrics, a redesigned purging interface, and ",{"type":60,"tag":87,"props":3248,"children":3249},{},[3250],{"type":66,"value":3251},"project-level routing",{"type":66,"value":3253}," — update response headers or rewrite to external APIs without triggering a new deployment. Project-level routes are available on all plans and take effect instantly.",{"type":60,"tag":75,"props":3255,"children":3257},{"id":3256},"when-to-use",[3258],{"type":66,"value":3259},"When to Use",{"type":60,"tag":102,"props":3261,"children":3262},{},[3263,3268,3273,3278],{"type":60,"tag":106,"props":3264,"children":3265},{},[3266],{"type":66,"value":3267},"Caching API responses or computed data across functions in a region",{"type":60,"tag":106,"props":3269,"children":3270},{},[3271],{"type":66,"value":3272},"Tag-based invalidation when content changes (CMS webhook → expire tag)",{"type":60,"tag":106,"props":3274,"children":3275},{},[3276],{"type":66,"value":3277},"Reducing database load for frequently accessed data",{"type":60,"tag":106,"props":3279,"children":3280},{},[3281],{"type":66,"value":3282},"Cross-function data sharing within a region",{"type":60,"tag":75,"props":3284,"children":3286},{"id":3285},"when-not-to-use",[3287],{"type":66,"value":3288},"When NOT to Use",{"type":60,"tag":102,"props":3290,"children":3291},{},[3292,3303,3308,3327,3332],{"type":60,"tag":106,"props":3293,"children":3294},{},[3295,3297,3302],{"type":66,"value":3296},"Framework-level page caching → use Next.js Cache Components (",{"type":60,"tag":127,"props":3298,"children":3300},{"className":3299},[],[3301],{"type":66,"value":2319},{"type":66,"value":142},{"type":60,"tag":106,"props":3304,"children":3305},{},[3306],{"type":66,"value":3307},"Persistent storage → use a database (Neon, Upstash)",{"type":60,"tag":106,"props":3309,"children":3310},{},[3311,3313,3319,3320,3325],{"type":66,"value":3312},"CDN-level full response caching → use ",{"type":60,"tag":127,"props":3314,"children":3316},{"className":3315},[],[3317],{"type":66,"value":3318},"Cache-Control",{"type":66,"value":1958},{"type":60,"tag":127,"props":3321,"children":3323},{"className":3322},[],[3324],{"type":66,"value":3034},{"type":66,"value":3326}," headers",{"type":60,"tag":106,"props":3328,"children":3329},{},[3330],{"type":66,"value":3331},"Cross-region shared state → use a database",{"type":60,"tag":106,"props":3333,"children":3334},{},[3335],{"type":66,"value":3336},"User-specific data that differs per request",{"type":60,"tag":75,"props":3338,"children":3340},{"id":3339},"references",[3341],{"type":66,"value":3342},"References",{"type":60,"tag":102,"props":3344,"children":3345},{},[3346,3359,3370,3381],{"type":60,"tag":106,"props":3347,"children":3348},{},[3349,3351],{"type":66,"value":3350},"📖 docs: ",{"type":60,"tag":3352,"props":3353,"children":3357},"a",{"href":3354,"rel":3355},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fruntime-cache",[3356],"nofollow",[3358],{"type":66,"value":3354},{"type":60,"tag":106,"props":3360,"children":3361},{},[3362,3364],{"type":66,"value":3363},"📖 changelog: ",{"type":60,"tag":3352,"props":3365,"children":3368},{"href":3366,"rel":3367},"https:\u002F\u002Fvercel.com\u002Fchangelog\u002Fintroducing-the-runtime-cache-api",[3356],[3369],{"type":66,"value":3366},{"type":60,"tag":106,"props":3371,"children":3372},{},[3373,3375],{"type":66,"value":3374},"📖 CLI cache: ",{"type":60,"tag":3352,"props":3376,"children":3379},{"href":3377,"rel":3378},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcli\u002Fcache",[3356],[3380],{"type":66,"value":3377},{"type":60,"tag":106,"props":3382,"children":3383},{},[3384,3386],{"type":66,"value":3385},"📖 CDN cache purging: ",{"type":60,"tag":3352,"props":3387,"children":3390},{"href":3388,"rel":3389},"https:\u002F\u002Fvercel.com\u002Fdocs\u002Fcdn-cache\u002Fpurge",[3356],[3391],{"type":66,"value":3388},{"type":60,"tag":3393,"props":3394,"children":3395},"style",{},[3396],{"type":66,"value":3397},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3399,"total":3515},[3400,3419,3435,3447,3465,3485,3503],{"slug":3401,"name":3401,"fn":3402,"description":3403,"org":3404,"tags":3405,"stars":28,"repoUrl":29,"updatedAt":3418},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3406,3409,3412,3415],{"name":3407,"slug":3408,"type":15},"Accessibility","accessibility",{"name":3410,"slug":3411,"type":15},"Charts","charts",{"name":3413,"slug":3414,"type":15},"Data Visualization","data-visualization",{"name":3416,"slug":3417,"type":15},"Design","design","2026-06-30T19:00:57.102",{"slug":3420,"name":3420,"fn":3421,"description":3422,"org":3423,"tags":3424,"stars":28,"repoUrl":29,"updatedAt":3434},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3425,3428,3431],{"name":3426,"slug":3427,"type":15},"Agents","agents",{"name":3429,"slug":3430,"type":15},"Browser Automation","browser-automation",{"name":3432,"slug":3433,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":3436,"name":3436,"fn":3437,"description":3438,"org":3439,"tags":3440,"stars":28,"repoUrl":29,"updatedAt":3446},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3441,3442,3445],{"name":3429,"slug":3430,"type":15},{"name":3443,"slug":3444,"type":15},"Local Development","local-development",{"name":3432,"slug":3433,"type":15},"2026-04-06T18:41:17.526867",{"slug":3448,"name":3448,"fn":3449,"description":3450,"org":3451,"tags":3452,"stars":28,"repoUrl":29,"updatedAt":3464},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3453,3454,3457,3460,3461],{"name":3426,"slug":3427,"type":15},{"name":3455,"slug":3456,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":3458,"slug":3459,"type":15},"SDK","sdk",{"name":23,"slug":24,"type":15},{"name":3462,"slug":3463,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":3466,"name":3466,"fn":3467,"description":3468,"org":3469,"tags":3470,"stars":28,"repoUrl":29,"updatedAt":3484},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3471,3474,3477,3480,3483],{"name":3472,"slug":3473,"type":15},"Frontend","frontend",{"name":3475,"slug":3476,"type":15},"React","react",{"name":3478,"slug":3479,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":3481,"slug":3482,"type":15},"UI Components","ui-components",{"name":17,"slug":18,"type":15},"2026-04-06T18:40:59.619419",{"slug":3486,"name":3486,"fn":3487,"description":3488,"org":3489,"tags":3490,"stars":28,"repoUrl":29,"updatedAt":3502},"ai-gateway","configure 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},[3491,3494,3497,3500,3501],{"name":3492,"slug":3493,"type":15},"AI Infrastructure","ai-infrastructure",{"name":3495,"slug":3496,"type":15},"Cost Optimization","cost-optimization",{"name":3498,"slug":3499,"type":15},"LLM","llm",{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:40:44.377464",{"slug":3504,"name":3504,"fn":3505,"description":3506,"org":3507,"tags":3508,"stars":28,"repoUrl":29,"updatedAt":3514},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3509,3510,3513],{"name":3495,"slug":3496,"type":15},{"name":3511,"slug":3512,"type":15},"Database","database",{"name":3498,"slug":3499,"type":15},"2026-04-06T18:41:08.513425",600,{"items":3517,"total":3714},[3518,3539,3562,3579,3595,3612,3631,3643,3657,3671,3683,3698],{"slug":3519,"name":3519,"fn":3520,"description":3521,"org":3522,"tags":3523,"stars":3536,"repoUrl":3537,"updatedAt":3538},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3524,3527,3530,3533],{"name":3525,"slug":3526,"type":15},"Documents","documents",{"name":3528,"slug":3529,"type":15},"Healthcare","healthcare",{"name":3531,"slug":3532,"type":15},"Insurance","insurance",{"name":3534,"slug":3535,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":3540,"name":3540,"fn":3541,"description":3542,"org":3543,"tags":3544,"stars":3559,"repoUrl":3560,"updatedAt":3561},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3545,3548,3550,3553,3556],{"name":3546,"slug":3547,"type":15},".NET","dotnet",{"name":3549,"slug":3540,"type":15},"ASP.NET Core",{"name":3551,"slug":3552,"type":15},"Blazor","blazor",{"name":3554,"slug":3555,"type":15},"C#","csharp",{"name":3557,"slug":3558,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":3563,"name":3563,"fn":3564,"description":3565,"org":3566,"tags":3567,"stars":3559,"repoUrl":3560,"updatedAt":3578},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3568,3571,3574,3577],{"name":3569,"slug":3570,"type":15},"Apps SDK","apps-sdk",{"name":3572,"slug":3573,"type":15},"ChatGPT","chatgpt",{"name":3575,"slug":3576,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":3580,"name":3580,"fn":3581,"description":3582,"org":3583,"tags":3584,"stars":3559,"repoUrl":3560,"updatedAt":3594},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3585,3588,3591],{"name":3586,"slug":3587,"type":15},"API Development","api-development",{"name":3589,"slug":3590,"type":15},"CLI","cli",{"name":3592,"slug":3593,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":3596,"name":3596,"fn":3597,"description":3598,"org":3599,"tags":3600,"stars":3559,"repoUrl":3560,"updatedAt":3611},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3601,3604,3607,3608],{"name":3602,"slug":3603,"type":15},"Cloudflare","cloudflare",{"name":3605,"slug":3606,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":3455,"slug":3456,"type":15},{"name":3609,"slug":3610,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":3613,"name":3613,"fn":3614,"description":3615,"org":3616,"tags":3617,"stars":3559,"repoUrl":3560,"updatedAt":3630},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3618,3621,3624,3627],{"name":3619,"slug":3620,"type":15},"Productivity","productivity",{"name":3622,"slug":3623,"type":15},"Project Management","project-management",{"name":3625,"slug":3626,"type":15},"Strategy","strategy",{"name":3628,"slug":3629,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":3632,"name":3632,"fn":3633,"description":3634,"org":3635,"tags":3636,"stars":3559,"repoUrl":3560,"updatedAt":3642},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3637,3638,3640,3641],{"name":3416,"slug":3417,"type":15},{"name":3639,"slug":3632,"type":15},"Figma",{"name":3472,"slug":3473,"type":15},{"name":3575,"slug":3576,"type":15},"2026-04-12T05:06:47.939943",{"slug":3644,"name":3644,"fn":3645,"description":3646,"org":3647,"tags":3648,"stars":3559,"repoUrl":3560,"updatedAt":3656},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3649,3650,3653,3654,3655],{"name":3416,"slug":3417,"type":15},{"name":3651,"slug":3652,"type":15},"Design System","design-system",{"name":3639,"slug":3632,"type":15},{"name":3472,"slug":3473,"type":15},{"name":3481,"slug":3482,"type":15},"2026-05-10T05:59:52.971881",{"slug":3658,"name":3658,"fn":3659,"description":3660,"org":3661,"tags":3662,"stars":3559,"repoUrl":3560,"updatedAt":3670},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3663,3664,3665,3668,3669],{"name":3416,"slug":3417,"type":15},{"name":3651,"slug":3652,"type":15},{"name":3666,"slug":3667,"type":15},"Documentation","documentation",{"name":3639,"slug":3632,"type":15},{"name":3472,"slug":3473,"type":15},"2026-05-16T06:07:47.821474",{"slug":3672,"name":3672,"fn":3673,"description":3674,"org":3675,"tags":3676,"stars":3559,"repoUrl":3560,"updatedAt":3682},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3677,3678,3679,3680,3681],{"name":3416,"slug":3417,"type":15},{"name":3639,"slug":3632,"type":15},{"name":3472,"slug":3473,"type":15},{"name":3481,"slug":3482,"type":15},{"name":3557,"slug":3558,"type":15},"2026-05-16T06:07:40.583615",{"slug":3684,"name":3684,"fn":3685,"description":3686,"org":3687,"tags":3688,"stars":3559,"repoUrl":3560,"updatedAt":3697},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3689,3692,3693,3696],{"name":3690,"slug":3691,"type":15},"Animation","animation",{"name":3592,"slug":3593,"type":15},{"name":3694,"slug":3695,"type":15},"Creative","creative",{"name":3416,"slug":3417,"type":15},"2026-05-02T05:31:48.48485",{"slug":3699,"name":3699,"fn":3700,"description":3701,"org":3702,"tags":3703,"stars":3559,"repoUrl":3560,"updatedAt":3713},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3704,3705,3706,3709,3712],{"name":3694,"slug":3695,"type":15},{"name":3416,"slug":3417,"type":15},{"name":3707,"slug":3708,"type":15},"Image Generation","image-generation",{"name":3710,"slug":3711,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]