What problem does it solve? AI SDK documentation in training data is outdated, leading to deprecated APIs, wrong parameter names, and broken code. This Skill forces verification against bundled docs and source code so generated AI features use current, correct APIs. ## Core Features & Use Cases - Verified API Usage: Searches node_modules/ai/docs and source code before writing code, never relying on memory for functions like generateText, streamText, or ToolLoopAgent. - Migration Guidance: Resolves common breaking changes such as maxTokens to maxOutputTokens, parameters to inputSchema, and the reworked useChat hook via the common-errors reference. - Type-Safe Agents: Builds end-to-end type-safe agents using InferAgentUIMessage with useChat, typed tool parts, and per-tool UI components. - Use Case: A developer asks to add a streaming chatbot with tool calling to a Next.js app; the Skill checks the installed ai package docs, fetches current model IDs from the Vercel AI Gateway, and produces type-safe server and client code that passes typecheck. ## Quick Start Ask the assistant to build an AI agent or chat feature with the AI SDK and let it verify the current APIs from the installed package docs first.