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 the installed ai package, eliminating errors caused by outdated knowledge of functions like generateText, streamText, ToolLoopAgent, and useChat. ## Core Features & Use Cases - Version-Matched Guidance: Reads docs and source from node_modules/ai/docs/ and node_modules/ai/src/ so every answer matches the actually installed SDK version. - Agent and App Building: Helps build agents, chatbots, RAG systems, tool calling, structured output, and embeddings using the SDK's built-in abstractions like ToolLoopAgent. - AI Gateway Setup: Guides setup of the Vercel AI Gateway for multi-provider model access and fetches the current model list instead of relying on memorized model IDs. - Use Case: A developer asks to add a streaming chatbot with tool calling to a Next.js app; the Skill checks the installed SDK version, reads the bundled useChat and agent docs, and produces code that compiles against that exact version. ## Quick Start Ask the assistant to build a streaming chat endpoint with tool calling using the AI SDK version installed in this project.