What problem does it solve? The Vercel AI SDK changes rapidly across versions, so code written from memory often uses outdated or removed APIs. This Skill grounds every answer in the version-matched documentation bundled inside node_modules, eliminating hallucinated APIs and deprecated patterns when building AI features. ## Core Features & Use Cases - Version-Matched Guidance: Reads the bundled docs at node_modules/ai/docs/ and source code so answers always match the installed SDK version. - Agent and App Building: Helps implement agents with ToolLoopAgent, tool calling, structured output, embeddings, and React hooks like useChat. - AI Gateway Setup: Guides configuration of the Vercel AI Gateway for multi-provider model access and fetches current model IDs instead of relying on memory. - Use Case: A developer asks to add a streaming chatbot to a React app; the Skill checks the installed ai package docs, verifies the current useChat API, and produces working, version-accurate code. ## Quick Start Ask the assistant to build a streaming chat endpoint with the AI SDK and have it verify every API against the bundled documentation first.