What problem does it solve? Developers frequently write outdated AI SDK code from memory because the SDK's APIs change rapidly across versions, causing type errors and broken implementations. This Skill enforces verification against version-matched bundled documentation before writing any AI SDK code. ## Core Features & Use Cases - Version-Matched Documentation Lookup: Reads bundled docs and source from node_modules/ai/docs and node_modules/ai/src to guarantee API accuracy for the installed version. - AI Gateway Setup Guidance: Walks through Vercel AI Gateway authentication, AI_GATEWAY_API_KEY configuration, and fetching current model IDs via the gateway API. - Agent and App Building: Guides building agents with ToolLoopAgent, tool calling, structured output, embeddings, and React hooks like useChat with end-to-end type safety. - Use Case: A developer asks to add a streaming chatbot to a Next.js app. The Skill checks the installed ai package version, reads the bundled useChat docs, fetches current model IDs, and generates code that compiles against the actual installed SDK. ## Quick Start Ask the assistant to build a streaming chat endpoint with the AI SDK and have it verify every API against the bundled docs in node_modules before writing code.