What problem does it solve? Developers building with the Gemini API often rely on outdated training data, using deprecated models like gemini-1.5 or legacy SDKs like google-generativeai. This Skill provides current model names, correct SDK packages, and working code patterns so generated code runs against the live API. ## Core Features & Use Cases - Current Model & SDK Reference: Lists supported Gemini and Gemma 4 models with context window sizes, plus the correct google-genai SDKs for Python, JavaScript/TypeScript, Go, and Java. - Quick Start Code Patterns: Provides working generate_content examples in four languages covering text generation, multimodal input, function calling, and structured outputs. - Documentation Lookup Strategy: Directs the agent to the Google MCP search_docs tool when available, or to the official llms.txt documentation index as a fallback. - Use Case: You ask an agent to build a Python script that summarizes images with Gemini. The Skill ensures it uses google-genai with gemini-3.5-flash instead of a deprecated SDK and model. ## Quick Start Ask the agent to write a Python script using the Gemini API that generates text with the gemini-3.5-flash model.