What problem does it solve? The Vercel AI SDK changes rapidly across versions, so code written from memory often uses renamed, removed, or deprecated APIs. This Skill forces verification against the documentation bundled inside node_modules, ensuring every generateText, streamText, tool calling, or useChat implementation matches the actually installed version. ## Core Features & Use Cases - Version-Matched Guidance: Reads docs and source from node_modules/ai/docs and node_modules/@ai-sdk/<name>/docs so answers always match the installed release. - Agent and App Building: Helps build agents with ToolLoopAgent, chatbots with useChat, RAG systems, structured output, tool calling, and embeddings across providers like OpenAI, Anthropic, and Google. - AI Gateway Setup: Guides configuration of the Vercel AI Gateway for multi-provider model access and fetches the current model list instead of relying on outdated model IDs. - Use Case: A developer asks to add a streaming chat endpoint to a Next.js app; the Skill checks the installed ai package version, reads its bundled docs, and produces code using the current streamText and useChat APIs. ## Quick Start Ask the assistant to build an AI chat feature with the AI SDK and have it verify every API against the docs bundled in node_modules before writing code.