What problem does it solve? AI coding assistants often have outdated knowledge of Chrome Built-in AI APIs, suggesting deprecated patterns like window.ai.* and capabilities(). This Skill injects the latest API conventions, Web IDLs, and best practices so generated code uses current top-level APIs like window.LanguageModel and availability(). ## Core Features & Use Cases - Deprecation Corrections: Replaces deprecated window.ai.* namespaces and capabilities() with top-level APIs (LanguageModel, Summarizer, Writer, Rewriter, Translator, LanguageDetector) and availability() checks. - Latest Web IDLs: Embeds authoritative IDL definitions for the Prompt, Translation, and Writing Assistance APIs, refreshed from official webmachinelearning specifications via an update script. - Implementation Guidance: Covers model download progress monitoring, multimodal sessions (text, image, audio), streaming with ReadableStream, structured output via responseConstraint, polyfills, and TypeScript types. - Use Case: A developer asks their AI agent to add on-device summarization to a web app; the agent correctly checks Summarizer.availability(), handles the downloadable state with a progress monitor, and streams sanitized output. ## Quick Start Ask your AI agent to implement a feature using the Chrome Built-in Prompt API with availability checking and download progress handling.