gemini-api-dev — for Claude Code gemini-api-dev, google-ai-studio-demos, community, for Claude Code, ide skills, gemini-3-pro-preview, gemini-3-flash-preview, gemini-3-pro-image-preview, gemini-2.5-*, gemini-2.0-*

v1.0.0

关于此技能

适用场景: Ideal for AI agents that need gemini api development skill. 本地化技能摘要: Helper for MLHers running through Google AI Studio demos # Gemini API Development Skill Overview The Gemini API provides access to Google's most advanced AI models. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

功能特性

Gemini API Development Skill
The Gemini API provides access to Google's most advanced AI models. Key capabilities include:
Text generation - Chat, completion, summarization
Multimodal understanding - Process images, audio, video, and documents
Function calling - Let the model invoke your functions

# 核心主题

thisisryanswift thisisryanswift
[0]
[0]
更新于: 4/4/2026

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

适用场景: Ideal for AI agents that need gemini api development skill. 本地化技能摘要: Helper for MLHers running through Google AI Studio demos # Gemini API Development Skill Overview The Gemini API provides access to Google's most advanced AI models. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

核心价值

推荐说明: gemini-api-dev helps agents gemini api development skill. Helper for MLHers running through Google AI Studio demos # Gemini API Development Skill Overview The Gemini API provides access to Google's most advanced

适用 Agent 类型

适用场景: Ideal for AI agents that need gemini api development skill.

赋予的主要能力 · gemini-api-dev

适用任务: Gemini API Development Skill
适用任务: The Gemini API provides access to Google's most advanced AI models. Key capabilities include:
适用任务: Text generation - Chat, completion, summarization

! 使用限制与门槛

  • 限制说明: Requires repository-specific context from the skill documentation
  • 限制说明: Works best when the underlying tools and dependencies are already configured

关于来源内容

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

gemini-api-dev 是什么?

适用场景: Ideal for AI agents that need gemini api development skill. 本地化技能摘要: Helper for MLHers running through Google AI Studio demos # Gemini API Development Skill Overview The Gemini API provides access to Google's most advanced AI models. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

如何安装 gemini-api-dev?

运行命令:npx killer-skills add thisisryanswift/google-ai-studio-demos。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

gemini-api-dev 适用于哪些场景?

典型场景包括:适用任务: Gemini API Development Skill、适用任务: The Gemini API provides access to Google's most advanced AI models. Key capabilities include:、适用任务: Text generation - Chat, completion, summarization。

gemini-api-dev 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

gemini-api-dev 有哪些限制?

限制说明: Requires repository-specific context from the skill documentation;限制说明: Works best when the underlying tools and dependencies are already configured。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add thisisryanswift/google-ai-studio-demos。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    gemini-api-dev 已启用,可立即在当前项目中调用。

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

Upstream Repository Material

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

gemini-api-dev

安装 gemini-api-dev,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。

SKILL.md
Readonly
Upstream Repository Material
The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Gemini API Development Skill

Overview

The Gemini API provides access to Google's most advanced AI models. Key capabilities include:

  • Text generation - Chat, completion, summarization
  • Multimodal understanding - Process images, audio, video, and documents
  • Function calling - Let the model invoke your functions
  • Structured output - Generate valid JSON matching your schema
  • Code execution - Run Python code in a sandboxed environment
  • Context caching - Cache large contexts for efficiency
  • Embeddings - Generate text embeddings for semantic search

Current Gemini Models

  • gemini-3-pro-preview: 1M tokens, complex reasoning, coding, research
  • gemini-3-flash-preview: 1M tokens, fast, balanced performance, multimodal
  • gemini-3-pro-image-preview: 65k / 32k tokens, image generation and editing

[!IMPORTANT] Models like gemini-2.5-*, gemini-2.0-*, gemini-1.5-* are legacy and deprecated. Use the new models above. Your knowledge is outdated.

SDKs

  • Python: google-genai install with pip install google-genai
  • JavaScript/TypeScript: @google/genai install with npm install @google/genai
  • Go: google.golang.org/genai install with go get google.golang.org/genai
  • Java:
    • groupId: com.google.genai, artifactId: google-genai
    • Latest version can be found here: https://central.sonatype.com/artifact/com.google.genai/google-genai/versions (let's call it LAST_VERSION)
    • Install in build.gradle:
      implementation("com.google.genai:google-genai:${LAST_VERSION}")
      
    • Install Maven dependency in pom.xml:
      <dependency>
          <groupId>com.google.genai</groupId>
          <artifactId>google-genai</artifactId>
          <version>${LAST_VERSION}</version>
      </dependency>
      

[!WARNING] Legacy SDKs google-generativeai (Python) and @google/generative-ai (JS) are deprecated. Migrate to the new SDKs above urgently by following the Migration Guide.

Quick Start

Python

python
1from google import genai 2 3client = genai.Client() 4response = client.models.generate_content( 5 model="gemini-3-flash-preview", 6 contents="Explain quantum computing" 7) 8print(response.text)

JavaScript/TypeScript

typescript
1import { GoogleGenAI } from "@google/genai"; 2 3const ai = new GoogleGenAI({}); 4const response = await ai.models.generateContent({ 5 model: "gemini-3-flash-preview", 6 contents: "Explain quantum computing" 7}); 8console.log(response.text);

Go

go
1package main 2 3import ( 4 "context" 5 "fmt" 6 "log" 7 "google.golang.org/genai" 8) 9 10func main() { 11 ctx := context.Background() 12 client, err := genai.NewClient(ctx, nil) 13 if err != nil { 14 log.Fatal(err) 15 } 16 17 resp, err := client.Models.GenerateContent(ctx, "gemini-3-flash-preview", genai.Text("Explain quantum computing"), nil) 18 if err != nil { 19 log.Fatal(err) 20 } 21 22 fmt.Println(resp.Text) 23}

Java

java
1import com.google.genai.Client; 2import com.google.genai.types.GenerateContentResponse; 3 4public class GenerateTextFromTextInput { 5 public static void main(String[] args) { 6 Client client = new Client(); 7 GenerateContentResponse response = 8 client.models.generateContent( 9 "gemini-3-flash-preview", 10 "Explain quantum computing", 11 null); 12 13 System.out.println(response.text()); 14 } 15}

API spec (source of truth)

Always use the latest REST API discovery spec as the source of truth for API definitions (request/response schemas, parameters, methods). Fetch the spec when implementing or debugging API integration:

  • v1beta (default): https://generativelanguage.googleapis.com/$discovery/rest?version=v1beta Use this unless the integration is explicitly pinned to v1. The official SDKs (google-genai, @google/genai, google.golang.org/genai) target v1beta.
  • v1: https://generativelanguage.googleapis.com/$discovery/rest?version=v1 Use only when the integration is specifically set to v1.

When in doubt, use v1beta. Refer to the spec for exact field names, types, and supported operations.

How to use the Gemini API

For detailed API documentation, fetch from the official docs index:

llms.txt URL: https://ai.google.dev/gemini-api/docs/llms.txt

This index contains links to all documentation pages in .md.txt format. Use web fetch tools to:

  1. Fetch llms.txt to discover available documentation pages
  2. Fetch specific pages (e.g., https://ai.google.dev/gemini-api/docs/function-calling.md.txt)

Key Documentation Pages

[!IMPORTANT] Those are not all the documentation pages. Use the llms.txt index to discover available documentation pages

Gemini Live API

For real-time, bidirectional audio/video/text streaming with the Gemini Live API, install the google-gemini/gemini-live-api-dev skill. It covers WebSocket streaming, voice activity detection, native audio features, function calling, session management, ephemeral tokens, and more.

相关技能

寻找 gemini-api-dev 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

本地化技能摘要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

本地化技能摘要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

本地化技能摘要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

本地化技能摘要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
开发者工具