What problem does it solve? Developers frequently write AI SDK code from outdated memory, producing errors because APIs, model IDs, and hooks like useChat change between versions. This Skill forces verification against the documentation bundled inside node_modules so generated code matches the actually installed version. ## Core Features & Use Cases - Version-Matched Guidance: Reads docs and source from node_modules/ai/docs and node_modules/ai/src instead of relying on training data. - Agent and App Building: Helps build agents with ToolLoopAgent, chatbots with useChat, RAG systems, structured output, tool calling, and embeddings. - AI Gateway Setup: Configures the Vercel AI Gateway for multi-provider access and fetches the current model list via the gateway API. - Use Case: A developer asks to add streaming chat to a Next.js app; the Skill checks the installed ai package version, reads its bundled docs, and generates code using the current useChat and streamText APIs. ## Quick Start Ask the agent to add a streaming chat endpoint to your app using the AI SDK and have it verify every API against the docs bundled in node_modules.