What problem does it solve? Developers writing code against the Gemini API often rely on outdated training data, deprecated models like gemini-1.5 or gemini-2.0, legacy SDKs, and the old generateContent API, producing broken or obsolete code. This Skill supplies current model names, SDK versions, the new steps-based response schema, and migration checklists so generated code works against the live API. ## Core Features & Use Cases - Current API Patterns: Provides working Python and TypeScript examples for text generation, stateful multi-turn chat via previous_interaction_id, streaming with step.delta events, and structured output. - Managed and Research Agents: Covers the Antigravity managed agent, Deep Research background agents, and custom agent creation through client.agents.create(). - Migration Support: Includes a references/migration.md guide with scoping rules, generateContent-to-Interactions mapping tables, deprecated model replacements, and verification checklists. - Use Case: A developer asks to upgrade a codebase from gemini-2.0-flash and generateContent; the Skill directs scope confirmation, model string replacement with gemini-3.5-flash, and step-based response handling. ## Quick Start Ask the AI to write a Python script using the Gemini Interactions API that sends a prompt to gemini-3.5-flash and prints the response text.