[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-major-version-mode":3,"mdc-9rh2fk-key":44,"related-org-vercel-major-version-mode":423,"related-repo-vercel-major-version-mode":596},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":39,"sourceUrl":42,"mdContent":43},"major-version-mode","work on AI SDK major releases","Context for working on the next AI SDK major release. Only use when explicitly invoked by the user (e.g. via '\u002Fmajor-version-mode'). Do NOT trigger autonomously based on task content.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel","Vercel","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel.png",[12,14,17],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"LLM","llm",{"name":18,"slug":19,"type":13},"SDK","sdk",25670,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fai","2026-04-15T04:51:47.940373",null,4816,[26,27,28,29,30,31,32,16,33,34,35,36,37,8,38],"anthropic","artificial-intelligence","gemini","generative-ai","generative-ui","javascript","language-model","nextjs","openai","react","svelte","typescript","vue",{"repoUrl":21,"stars":20,"forks":24,"topics":40,"description":41},[26,27,28,29,30,31,32,16,33,34,35,36,37,8,38],"The AI Toolkit for TypeScript. From the creators of Next.js, the AI SDK is a free open-source library for building AI-powered applications and agents ","https:\u002F\u002Fgithub.com\u002Fvercel\u002Fai\u002Ftree\u002FHEAD\u002Fskills\u002Fmajor-version-mode","---\nname: major-version-mode\ndescription: \"Context for working on the next AI SDK major release. Only use when explicitly invoked by the user (e.g. via '\u002Fmajor-version-mode'). Do NOT trigger autonomously based on task content.\"\nmetadata:\n  internal: true\n---\n\n## Context\n\nThis task is part of the next AI SDK major release. Breaking changes are acceptable.\n\n## Breaking Change Guidelines\n\nWhile breaking changes are acceptable, it is still encouraged to minimize unnecessary disruption for 3P consumers of the AI SDK. Providing deprecated aliases and automated migration logic can help ease the transition.\n\n### Renamed\u002Fchanged exports\n\nIf renaming or modifying an exported function or type, provide a deprecated alias as a package-level export where feasible:\n\n```typescript\n\u002F** @deprecated Use `newFunctionName` instead. *\u002F\nexport { newFunctionName as oldFunctionName } from '.\u002Fnew-module';\n```\n\nOnly do this if it doesn't introduce meaningful technical debt. If it does, skip the alias — but **check with the user first** before making a clean break.\n\n### Modified message types (e.g. in `@ai-sdk\u002Fprovider-utils`)\n\nIf modifying model message shapes (e.g. content part types in `packages\u002Fprovider-utils\u002Fsrc\u002Ftypes\u002Fcontent-part.ts`):\n\n1. **Deprecate in `@ai-sdk\u002Fprovider-utils`** rather than removing immediately, if feasible. Mark deprecated types\u002Fmembers with a `@deprecated` JSDoc comment and a `TODO` note to remove in the following major version.\n2. **Keep deprecated equivalents in `packages\u002Fai\u002Fsrc\u002Fprompt\u002Fcontent-part.ts`** — this file is the consumer-facing layer and should retain the old shapes in the Zod schemas so existing consumer code continues to compile with a deprecation warning. Include a similar note about deprecation and removal in the following major version.\n3. If clean deprecation isn't feasible without meaningful technical debt, a hard removal may be preferred — but **check with the user first**.\n\n### Provider spec changes (`@ai-sdk\u002Fprovider`)\n\nThe `provider` package defines the spec that provider implementers code against. It should generally not be modified outside of major versions, so keeping the spec clean and consistent is critical.\n\nBreaking changes _without_ maintaining temporary backward compatibility measures are more acceptable here than elsewhere, because the audience is smaller — far fewer developers implement their own providers than build features on top of the AI SDK.\n\nRules:\n\n- **Only modify the latest spec version.** Older versioned spec interfaces must remain completely untouched.\n- Deprecated aliases are not required — a clean break is preferred to preserve spec clarity.\n- The current spec version is **not** the same as the current AI SDK major version number. If it's unclear which spec version to operate on, **ask the user before proceeding**.\n\n## Documentation\n\nAfter implementing changes, update relevant documentation in `content\u002Fdocs\u002F`.\n\nIf the change requires consumers to update their code or migrate stored data, add a section to the latest migration guide:\n\n- Find the migration guide with the highest version number in `content\u002Fdocs\u002F08-migration-guides\u002F`\n- Add a concise section explaining what changed and how to migrate\n",{"data":45,"body":48},{"name":4,"description":6,"metadata":46},{"internal":47},true,{"type":49,"children":50},"root",[51,60,66,72,77,84,89,191,204,218,231,294,307,320,333,338,375,381,393,398,417],{"type":52,"tag":53,"props":54,"children":56},"element","h2",{"id":55},"context",[57],{"type":58,"value":59},"text","Context",{"type":52,"tag":61,"props":62,"children":63},"p",{},[64],{"type":58,"value":65},"This task is part of the next AI SDK major release. Breaking changes are acceptable.",{"type":52,"tag":53,"props":67,"children":69},{"id":68},"breaking-change-guidelines",[70],{"type":58,"value":71},"Breaking Change Guidelines",{"type":52,"tag":61,"props":73,"children":74},{},[75],{"type":58,"value":76},"While breaking changes are acceptable, it is still encouraged to minimize unnecessary disruption for 3P consumers of the AI SDK. Providing deprecated aliases and automated migration logic can help ease the transition.",{"type":52,"tag":78,"props":79,"children":81},"h3",{"id":80},"renamedchanged-exports",[82],{"type":58,"value":83},"Renamed\u002Fchanged exports",{"type":52,"tag":61,"props":85,"children":86},{},[87],{"type":58,"value":88},"If renaming or modifying an exported function or type, provide a deprecated alias as a package-level export where feasible:",{"type":52,"tag":90,"props":91,"children":95},"pre",{"className":92,"code":93,"language":37,"meta":94,"style":94},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F** @deprecated Use `newFunctionName` instead. *\u002F\nexport { newFunctionName as oldFunctionName } from '.\u002Fnew-module';\n","",[96],{"type":52,"tag":97,"props":98,"children":99},"code",{"__ignoreMap":94},[100,129],{"type":52,"tag":101,"props":102,"children":105},"span",{"class":103,"line":104},"line",1,[106,112,118,124],{"type":52,"tag":101,"props":107,"children":109},{"style":108},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[110],{"type":58,"value":111},"\u002F** ",{"type":52,"tag":101,"props":113,"children":115},{"style":114},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[116],{"type":58,"value":117},"@",{"type":52,"tag":101,"props":119,"children":121},{"style":120},"--shiki-light:#9C3EDA;--shiki-light-font-style:italic;--shiki-default:#C792EA;--shiki-default-font-style:italic;--shiki-dark:#C792EA;--shiki-dark-font-style:italic",[122],{"type":58,"value":123},"deprecated",{"type":52,"tag":101,"props":125,"children":126},{"style":108},[127],{"type":58,"value":128}," Use `newFunctionName` instead. *\u002F\n",{"type":52,"tag":101,"props":130,"children":132},{"class":103,"line":131},2,[133,138,144,150,155,160,165,170,175,181,186],{"type":52,"tag":101,"props":134,"children":135},{"style":114},[136],{"type":58,"value":137},"export",{"type":52,"tag":101,"props":139,"children":141},{"style":140},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[142],{"type":58,"value":143}," {",{"type":52,"tag":101,"props":145,"children":147},{"style":146},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[148],{"type":58,"value":149}," newFunctionName",{"type":52,"tag":101,"props":151,"children":152},{"style":114},[153],{"type":58,"value":154}," as",{"type":52,"tag":101,"props":156,"children":157},{"style":146},[158],{"type":58,"value":159}," oldFunctionName",{"type":52,"tag":101,"props":161,"children":162},{"style":140},[163],{"type":58,"value":164}," }",{"type":52,"tag":101,"props":166,"children":167},{"style":114},[168],{"type":58,"value":169}," from",{"type":52,"tag":101,"props":171,"children":172},{"style":140},[173],{"type":58,"value":174}," '",{"type":52,"tag":101,"props":176,"children":178},{"style":177},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[179],{"type":58,"value":180},".\u002Fnew-module",{"type":52,"tag":101,"props":182,"children":183},{"style":140},[184],{"type":58,"value":185},"'",{"type":52,"tag":101,"props":187,"children":188},{"style":140},[189],{"type":58,"value":190},";\n",{"type":52,"tag":61,"props":192,"children":193},{},[194,196,202],{"type":58,"value":195},"Only do this if it doesn't introduce meaningful technical debt. If it does, skip the alias — but ",{"type":52,"tag":197,"props":198,"children":199},"strong",{},[200],{"type":58,"value":201},"check with the user first",{"type":58,"value":203}," before making a clean break.",{"type":52,"tag":78,"props":205,"children":207},{"id":206},"modified-message-types-eg-in-ai-sdkprovider-utils",[208,210,216],{"type":58,"value":209},"Modified message types (e.g. in ",{"type":52,"tag":97,"props":211,"children":213},{"className":212},[],[214],{"type":58,"value":215},"@ai-sdk\u002Fprovider-utils",{"type":58,"value":217},")",{"type":52,"tag":61,"props":219,"children":220},{},[221,223,229],{"type":58,"value":222},"If modifying model message shapes (e.g. content part types in ",{"type":52,"tag":97,"props":224,"children":226},{"className":225},[],[227],{"type":58,"value":228},"packages\u002Fprovider-utils\u002Fsrc\u002Ftypes\u002Fcontent-part.ts",{"type":58,"value":230},"):",{"type":52,"tag":232,"props":233,"children":234},"ol",{},[235,267,283],{"type":52,"tag":236,"props":237,"children":238},"li",{},[239,249,251,257,259,265],{"type":52,"tag":197,"props":240,"children":241},{},[242,244],{"type":58,"value":243},"Deprecate in ",{"type":52,"tag":97,"props":245,"children":247},{"className":246},[],[248],{"type":58,"value":215},{"type":58,"value":250}," rather than removing immediately, if feasible. Mark deprecated types\u002Fmembers with a ",{"type":52,"tag":97,"props":252,"children":254},{"className":253},[],[255],{"type":58,"value":256},"@deprecated",{"type":58,"value":258}," JSDoc comment and a ",{"type":52,"tag":97,"props":260,"children":262},{"className":261},[],[263],{"type":58,"value":264},"TODO",{"type":58,"value":266}," note to remove in the following major version.",{"type":52,"tag":236,"props":268,"children":269},{},[270,281],{"type":52,"tag":197,"props":271,"children":272},{},[273,275],{"type":58,"value":274},"Keep deprecated equivalents in ",{"type":52,"tag":97,"props":276,"children":278},{"className":277},[],[279],{"type":58,"value":280},"packages\u002Fai\u002Fsrc\u002Fprompt\u002Fcontent-part.ts",{"type":58,"value":282}," — this file is the consumer-facing layer and should retain the old shapes in the Zod schemas so existing consumer code continues to compile with a deprecation warning. Include a similar note about deprecation and removal in the following major version.",{"type":52,"tag":236,"props":284,"children":285},{},[286,288,292],{"type":58,"value":287},"If clean deprecation isn't feasible without meaningful technical debt, a hard removal may be preferred — but ",{"type":52,"tag":197,"props":289,"children":290},{},[291],{"type":58,"value":201},{"type":58,"value":293},".",{"type":52,"tag":78,"props":295,"children":297},{"id":296},"provider-spec-changes-ai-sdkprovider",[298,300,306],{"type":58,"value":299},"Provider spec changes (",{"type":52,"tag":97,"props":301,"children":303},{"className":302},[],[304],{"type":58,"value":305},"@ai-sdk\u002Fprovider",{"type":58,"value":217},{"type":52,"tag":61,"props":308,"children":309},{},[310,312,318],{"type":58,"value":311},"The ",{"type":52,"tag":97,"props":313,"children":315},{"className":314},[],[316],{"type":58,"value":317},"provider",{"type":58,"value":319}," package defines the spec that provider implementers code against. It should generally not be modified outside of major versions, so keeping the spec clean and consistent is critical.",{"type":52,"tag":61,"props":321,"children":322},{},[323,325,331],{"type":58,"value":324},"Breaking changes ",{"type":52,"tag":326,"props":327,"children":328},"em",{},[329],{"type":58,"value":330},"without",{"type":58,"value":332}," maintaining temporary backward compatibility measures are more acceptable here than elsewhere, because the audience is smaller — far fewer developers implement their own providers than build features on top of the AI SDK.",{"type":52,"tag":61,"props":334,"children":335},{},[336],{"type":58,"value":337},"Rules:",{"type":52,"tag":339,"props":340,"children":341},"ul",{},[342,352,357],{"type":52,"tag":236,"props":343,"children":344},{},[345,350],{"type":52,"tag":197,"props":346,"children":347},{},[348],{"type":58,"value":349},"Only modify the latest spec version.",{"type":58,"value":351}," Older versioned spec interfaces must remain completely untouched.",{"type":52,"tag":236,"props":353,"children":354},{},[355],{"type":58,"value":356},"Deprecated aliases are not required — a clean break is preferred to preserve spec clarity.",{"type":52,"tag":236,"props":358,"children":359},{},[360,362,367,369,374],{"type":58,"value":361},"The current spec version is ",{"type":52,"tag":197,"props":363,"children":364},{},[365],{"type":58,"value":366},"not",{"type":58,"value":368}," the same as the current AI SDK major version number. If it's unclear which spec version to operate on, ",{"type":52,"tag":197,"props":370,"children":371},{},[372],{"type":58,"value":373},"ask the user before proceeding",{"type":58,"value":293},{"type":52,"tag":53,"props":376,"children":378},{"id":377},"documentation",[379],{"type":58,"value":380},"Documentation",{"type":52,"tag":61,"props":382,"children":383},{},[384,386,392],{"type":58,"value":385},"After implementing changes, update relevant documentation in ",{"type":52,"tag":97,"props":387,"children":389},{"className":388},[],[390],{"type":58,"value":391},"content\u002Fdocs\u002F",{"type":58,"value":293},{"type":52,"tag":61,"props":394,"children":395},{},[396],{"type":58,"value":397},"If the change requires consumers to update their code or migrate stored data, add a section to the latest migration guide:",{"type":52,"tag":339,"props":399,"children":400},{},[401,412],{"type":52,"tag":236,"props":402,"children":403},{},[404,406],{"type":58,"value":405},"Find the migration guide with the highest version number in ",{"type":52,"tag":97,"props":407,"children":409},{"className":408},[],[410],{"type":58,"value":411},"content\u002Fdocs\u002F08-migration-guides\u002F",{"type":52,"tag":236,"props":413,"children":414},{},[415],{"type":58,"value":416},"Add a concise section explaining what changed and how to migrate",{"type":52,"tag":418,"props":419,"children":420},"style",{},[421],{"type":58,"value":422},"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":424,"total":595},[425,447,461,480,491,506,520,536,548,565,575,585],{"slug":426,"name":426,"fn":427,"description":428,"org":429,"tags":430,"stars":444,"repoUrl":445,"updatedAt":446},"next-cache-components-adoption","enable and migrate to Next.js Cache Components","Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the `cacheComponents` flag, work through a flood of blocking-prerender \u002F instant validation errors, run the `cache-components-instant-false` codemod, or decide between opting routes out with `export const instant = false` and fixing them in place.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[431,434,437,440,443],{"name":432,"slug":433,"type":13},"Caching","caching",{"name":435,"slug":436,"type":13},"Frontend","frontend",{"name":438,"slug":439,"type":13},"Migration","migration",{"name":441,"slug":442,"type":13},"Next.js","next-js",{"name":9,"slug":8,"type":13},141208,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext.js","2026-07-24T05:38:30.118542",{"slug":448,"name":448,"fn":449,"description":450,"org":451,"tags":452,"stars":444,"repoUrl":445,"updatedAt":460},"next-cache-components-optimizer","optimize Next.js cache components","Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components \u002F PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next\u002Fplaywright instant() e2e and work it to green, one verified route at a time; the shipped test then guards against regression. Use when asked to make a route's navigation instant (its static shell commits immediately), fix a route whose static shell isn't prerendered\u002Fserved\u002Fprefetched, grow a route's static shell or fix its slow first paint, diagnose which Suspense boundary keeps a route out of its static shell, or write the instant() e2e guard for one. Requires Next.js 16.3+ with cacheComponents; directs an upgrade if older.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[453,454,455,456,459],{"name":432,"slug":433,"type":13},{"name":435,"slug":436,"type":13},{"name":441,"slug":442,"type":13},{"name":457,"slug":458,"type":13},"Performance","performance",{"name":9,"slug":8,"type":13},"2026-07-30T05:31:10.674078",{"slug":462,"name":462,"fn":463,"description":464,"org":465,"tags":466,"stars":444,"repoUrl":445,"updatedAt":479},"next-dev-loop","verify Next.js runtime behavior","Verify Next.js runtime behavior after editing app code. Use this skill to confirm a change actually works in a running app — not just that it compiles or type-checks. Combines \u002F_next\u002Fmcp (Next.js's view) with agent-browser (the browser's view). Requires a running `next dev`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[467,470,471,474,475,476],{"name":468,"slug":469,"type":13},"Debugging","debugging",{"name":435,"slug":436,"type":13},{"name":472,"slug":473,"type":13},"Local Development","local-development",{"name":441,"slug":442,"type":13},{"name":9,"slug":8,"type":13},{"name":477,"slug":478,"type":13},"Web Development","web-development","2026-05-22T06:45:28.627735",{"slug":481,"name":481,"fn":482,"description":483,"org":484,"tags":485,"stars":444,"repoUrl":445,"updatedAt":490},"next-partial-prefetching-adoption","adopt Partial Prefetching in Next.js apps","Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the `partialPrefetching` flag, opt routes in with `export const prefetch = 'partial'`, audit `\u003CLink prefetch={true}>` calls, or resolve the link-prefetch-partial and instant-shell-url-data insights.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[486,487,488,489],{"name":435,"slug":436,"type":13},{"name":441,"slug":442,"type":13},{"name":457,"slug":458,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:11.591864",{"slug":492,"name":492,"fn":493,"description":494,"org":495,"tags":496,"stars":503,"repoUrl":504,"updatedAt":505},"turborepo","manage monorepos with Turborepo","Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines,\ndependsOn, caching, remote cache, the \"turbo\" CLI, --filter, --affected, CI optimization, environment\nvariables, internal packages, monorepo structure\u002Fbest practices, and boundaries.\n\nUse when user: configures tasks\u002Fworkflows\u002Fpipelines, creates packages, sets up\nmonorepo, shares code between apps, runs changed\u002Faffected packages, debugs cache,\nor has apps\u002Fpackages directories.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[497,500,501],{"name":498,"slug":499,"type":13},"CI\u002FCD","ci-cd",{"name":457,"slug":458,"type":13},{"name":502,"slug":492,"type":13},"Turborepo",30809,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo","2026-07-30T05:32:14.920116",{"slug":507,"name":507,"fn":508,"description":509,"org":510,"tags":511,"stars":20,"repoUrl":21,"updatedAt":519},"add-function-examples","add AI function examples for testing","Guide for adding new AI function examples, for testing specific features against the actual provider APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[512,515,518],{"name":513,"slug":514,"type":13},"AI SDK","ai-sdk",{"name":516,"slug":517,"type":13},"Testing","testing",{"name":9,"slug":8,"type":13},"2026-04-06T18:55:51.318866",{"slug":521,"name":521,"fn":522,"description":523,"org":524,"tags":525,"stars":20,"repoUrl":21,"updatedAt":535},"add-harness-package","add AI SDK harness packages","Guide for adding new AI SDK harness packages. Use when creating a new @ai-sdk\u002Fharness-\u003Cname> package that adapts a coding-agent runtime to HarnessV1.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[526,529,530,533,534],{"name":527,"slug":528,"type":13},"Agents","agents",{"name":513,"slug":514,"type":13},{"name":531,"slug":532,"type":13},"Harness","harness",{"name":18,"slug":19,"type":13},{"name":9,"slug":8,"type":13},"2026-06-18T08:29:19.858737",{"slug":537,"name":537,"fn":538,"description":539,"org":540,"tags":541,"stars":20,"repoUrl":21,"updatedAt":547},"add-provider-package","add new provider packages to AI SDK","Guide for adding new AI provider packages to the AI SDK. Use when creating a new @ai-sdk\u002F\u003Cprovider> package to integrate an AI service into the SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[542,543,546],{"name":513,"slug":514,"type":13},{"name":544,"slug":545,"type":13},"API Development","api-development",{"name":9,"slug":8,"type":13},"2026-04-06T18:55:47.45549",{"slug":549,"name":549,"fn":550,"description":551,"org":552,"tags":553,"stars":20,"repoUrl":21,"updatedAt":564},"adr-skill","create and maintain architecture decision records","Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept\u002Freject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses Socratic questioning to capture intent before drafting, and validates output against an agent-readiness checklist.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[554,557,560,561],{"name":555,"slug":556,"type":13},"ADR","adr",{"name":558,"slug":559,"type":13},"Architecture","architecture",{"name":380,"slug":377,"type":13},{"name":562,"slug":563,"type":13},"Engineering","engineering","2026-04-06T18:55:50.043694",{"slug":514,"name":514,"fn":566,"description":567,"org":568,"tags":569,"stars":20,"repoUrl":21,"updatedAt":574},"build AI features with Vercel AI SDK","Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: \"AI SDK\", \"Vercel AI SDK\", \"generateText\", \"streamText\", \"add AI to my app\", \"build an agent\", \"tool calling\", \"structured output\", \"useChat\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[570,571,572,573],{"name":527,"slug":528,"type":13},{"name":513,"slug":514,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:48.739463",{"slug":576,"name":576,"fn":577,"description":578,"org":579,"tags":580,"stars":20,"repoUrl":21,"updatedAt":584},"capture-api-response-test-fixture","capture API response test fixtures","Capture API response test fixture.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[581,582,583],{"name":544,"slug":545,"type":13},{"name":516,"slug":517,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:56.374433",{"slug":586,"name":586,"fn":587,"description":588,"org":589,"tags":590,"stars":20,"repoUrl":21,"updatedAt":594},"develop-ai-functions-example","develop AI SDK function examples","Develop examples for AI SDK functions. Use when creating, running, or modifying examples under examples\u002Fai-functions\u002Fsrc to validate provider support, demonstrate features, or create test fixtures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[591,592,593],{"name":513,"slug":514,"type":13},{"name":516,"slug":517,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:55.088956",68,{"items":597,"total":644},[598,604,612,618,625,632,638],{"slug":507,"name":507,"fn":508,"description":509,"org":599,"tags":600,"stars":20,"repoUrl":21,"updatedAt":519},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[601,602,603],{"name":513,"slug":514,"type":13},{"name":516,"slug":517,"type":13},{"name":9,"slug":8,"type":13},{"slug":521,"name":521,"fn":522,"description":523,"org":605,"tags":606,"stars":20,"repoUrl":21,"updatedAt":535},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[607,608,609,610,611],{"name":527,"slug":528,"type":13},{"name":513,"slug":514,"type":13},{"name":531,"slug":532,"type":13},{"name":18,"slug":19,"type":13},{"name":9,"slug":8,"type":13},{"slug":537,"name":537,"fn":538,"description":539,"org":613,"tags":614,"stars":20,"repoUrl":21,"updatedAt":547},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[615,616,617],{"name":513,"slug":514,"type":13},{"name":544,"slug":545,"type":13},{"name":9,"slug":8,"type":13},{"slug":549,"name":549,"fn":550,"description":551,"org":619,"tags":620,"stars":20,"repoUrl":21,"updatedAt":564},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[621,622,623,624],{"name":555,"slug":556,"type":13},{"name":558,"slug":559,"type":13},{"name":380,"slug":377,"type":13},{"name":562,"slug":563,"type":13},{"slug":514,"name":514,"fn":566,"description":567,"org":626,"tags":627,"stars":20,"repoUrl":21,"updatedAt":574},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[628,629,630,631],{"name":527,"slug":528,"type":13},{"name":513,"slug":514,"type":13},{"name":15,"slug":16,"type":13},{"name":9,"slug":8,"type":13},{"slug":576,"name":576,"fn":577,"description":578,"org":633,"tags":634,"stars":20,"repoUrl":21,"updatedAt":584},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[635,636,637],{"name":544,"slug":545,"type":13},{"name":516,"slug":517,"type":13},{"name":9,"slug":8,"type":13},{"slug":586,"name":586,"fn":587,"description":588,"org":639,"tags":640,"stars":20,"repoUrl":21,"updatedAt":594},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[641,642,643],{"name":513,"slug":514,"type":13},{"name":516,"slug":517,"type":13},{"name":9,"slug":8,"type":13},12]