What problem does it solve? Developers frequently write AI SDK code from outdated memory, producing errors because APIs like useChat, generateText, and streamText change across versions. This Skill enforces verification against version-matched bundled documentation so generated code matches the installed SDK. ## Core Features & Use Cases - Version-Matched Documentation Lookup: Reads bundled docs and source in node_modules/ai/docs and node_modules/ai/src so answers always match the installed package version. - Agent and App Building Guidance: 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 and Model Selection: Configures the Vercel AI Gateway with AI_GATEWAY_API_KEY and fetches the live model list instead of relying on memorized 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 writes code using the current streamText and useChat APIs. ## Quick Start Ask the assistant to build a streaming chatbot using the AI SDK and have it verify every API against the bundled documentation in node_modules before writing code.