What problem does it solve? AI SDK APIs change frequently, and outdated knowledge leads to deprecated parameters, broken type errors, and incorrect model IDs. This Skill forces verification against current documentation and source code so generated AI features compile and run correctly. ## Core Features & Use Cases - Verified API Usage: Searches bundled docs in node_modules/ai/docs and ai-sdk.dev instead of relying on stale training knowledge. - Agent and Chatbot Construction: Builds ToolLoopAgent-based agents with type-safe useChat integration via InferAgentUIMessage. - Migration Error Resolution: Maps deprecated APIs like maxTokens, maxSteps, parameters, and generateObject to their current replacements. - Use Case: A developer asks to add a streaming chat endpoint with tool calling to a React app; the Skill checks the installed ai package docs, fetches current model IDs from the AI Gateway, and produces type-safe code that passes typecheck. ## Quick Start Ask the assistant to build a streaming chat agent with tool calling using the AI SDK and have it verify the current APIs against the installed ai package docs.