What problem does it solve? The AI SDK changes rapidly, and outdated knowledge leads to deprecated APIs, type errors, and broken code. This Skill forces verification against current documentation and source code so AI features are built with correct, up-to-date patterns. ## Core Features & Use Cases - Current API Verification: Searches bundled docs in node_modules/ai/docs/ and ai-sdk.dev instead of relying on stale training data. - Agent Building: Guides creation of ToolLoopAgent-based agents with type-safe consumption via useChat and InferAgentUIMessage. - Error Resolution: Maps deprecated APIs (maxTokens, maxSteps, parameters, generateObject) to their modern replacements. - Use Case: A developer asks to add a streaming chatbot 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. ## Quick Start Ask the assistant to build a streaming chat endpoint using the AI SDK with the latest Anthropic model.