What problem does it solve? Developers building AI features with the Vercel AI SDK often rely on outdated knowledge, since the SDK's APIs change frequently across versions. This Skill ensures AI SDK code is written against the version actually installed in the project, not stale training data. ## Core Features & Use Cases - Version-Matched Documentation Lookup: Reads bundled docs and source code inside node_modules/ai to verify every API, option, and pattern before writing code. - AI Feature Implementation: Helps build agents, chatbots, RAG systems, tool calling, structured output, embeddings, and streaming with generateText, streamText, ToolLoopAgent, and useChat. - AI Gateway Setup & Model Selection: Guides setup of the Vercel AI Gateway and fetches the current model list instead of relying on memorized model IDs. - Use Case: A developer asks to add a streaming chatbot to a Next.js app. The Skill checks the installed ai package version, reads its bundled docs, and writes code using the current useChat and streamText APIs. ## Quick Start Ask the assistant to add a streaming chat endpoint to your app using the AI SDK version installed in this project.