Agent skill · Backend & API

gemini-genai

Google python-genai SDK for Gemini 3 Flash, Gemini 3 Pro, and Gemini models. Use when building with Google's Gemini API, google-genai, implementing thinking/reasoning, structured outputs, function calling, image generation, or multimodal. Triggers on "gemini", "google ai", "genai".

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill gemini-genai --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/gemini-genai/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Google Gemini python-genai SDK ## Model IDs | Model | ID | |-------|-----| | Gemini 3 Flash | `gemini-3-flash-preview` | | Gemini 3 Pro | `gemini-3-pro-preview` | | Gemini 3 Pro Image | `gemini-3-pro-image-preview` | | Gemini 2.5 Flash | `gemini-2.5-flash` | | Gemini 2.5 Pro | `gemini-2.5-pro` | ## Gemini 3 Flash Capabilities **Token Limits**: 1,048,576 input / 65,536 output (confirmed 1M context) **Inputs**: Text, Image, Video, Audio, PDF **Supported**: Batch API, Caching, Code execution, File search, Function calling, Search grounding, Structured outputs, Thinking, URL context **Not Supported**: Audio generation, Image generation (use gemini-3-pro-image-preview), Live API, Grounding with Google Maps **Knowledge cutoff**: January 2025 ## Critical: Temperature for Gemini 3 **Keep `temperature=1.0`** - Lower values cause response looping. ## Thinking Levels (Gemini 3) ```python config=types.GenerateContentConfig( thinking_config=types.ThinkingConfig(thinking_level="high") # minimal|low|medium|high ) ``` - `minimal`: No thinking, lowest latency (Flash only) - `high`: Maximum reasoning (default) ## Async Pattern ```python async with genai.Client().aio as client: response = await cli

What's inside
Steps it walks through
  1. Model IDs
  2. Gemini 3 Flash Capabilities
  3. Critical: Temperature for Gemini 3
  4. Thinking Levels (Gemini 3)
  5. Async Pattern
  6. Media Resolution (v1alpha required)
  7. Built-in Tools (Gemini 3)
  8. Enum Response
  9. Image Generation
  10. Response Helpers
  11. Pricing (Gemini 3 Flash)
  12. Resources
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the gemini-genai skill do?

Google python-genai SDK for Gemini 3 Flash, Gemini 3 Pro, and Gemini models. Use when building with Google's Gemini API, google-genai, implementing thinking/reasoning, structured outputs, function calling, image generation, or multimodal. Triggers on "gemini", "google ai", "genai".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill gemini-genai --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going