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 for Gemini API development. ## Core Features & Use Cases - Current Model & SDK Reference: Lists active models (gemini-3.5-flash, gemini-2.5-pro, gemma-4) and official SDKs for Python, JavaScript/TypeScript, Go, and Java, while flagging deprecated ones. - Quick Start Code Patterns: Provides working generate_content examples in four languages with correct client initialization. - Documentation Lookup Strategy: Directs the AI to use the Google MCP search_docs tool when available, or fetch from ai.google.dev llms.txt index as a fallback. - Use Case: You ask your AI assistant to add image generation to your app. Instead of hallucinating an old model name, it uses gemini-3.1-flash-image-preview with the correct @google/genai SDK syntax. ## Quick Start Ask the AI to write a Python script that sends a prompt to the Gemini API and prints the response using the current SDK.