What problem does it solve? Developers building AI features with the Vercel AI SDK often rely on outdated knowledge of rapidly changing APIs, leading to broken code with renamed functions, deprecated patterns, and retired model IDs. This Skill grounds every answer in the version-matched documentation bundled inside node_modules. ## Core Features & Use Cases - Version-Accurate Guidance: Reads the bundled docs and source at node_modules/ai/docs/ and node_modules/ai/src/ so answers always match the installed SDK version. - AI Feature Development: Helps build agents with ToolLoopAgent, chatbots with useChat, RAG systems, tool calling, structured output, and embeddings across providers like OpenAI, Anthropic, and Google. - AI Gateway Setup: Configures the Vercel AI Gateway for unified multi-provider access and fetches the current model list instead of relying on memorized model IDs. - Use Case: You ask how to add streaming chat to your Next.js app. The Skill checks your installed ai package version, reads its bundled docs, and writes code using the current useChat API rather than an outdated pattern. ## Quick Start Ask how to build a streaming chatbot with the AI SDK in your project and let it verify the installed version's docs first.