Look up Gemini API documentation and SDK patterns when building with Google Gemini. This skill brings Gemini docs TO Claude — it does not call Gemini.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongemini-guideExecute the skills CLI command in your project's root directory to begin installation:
Fetches gemini-guide from jezweb/claude-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate gemini-guide. Access via /gemini-guide in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
695
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
695
stars
Look up Gemini API documentation and SDK patterns when building with Google Gemini. This skill brings Gemini docs TO Claude — it does not call Gemini.
| Skill | Direction | Tool |
|---|---|---|
| gemini-guide (this) | Gemini docs -> Claude | WebFetch, local docs |
| gemini-peer-review | Code -> Gemini | Direct Gemini API |
Check in this priority order:
| Priority | Source | Best For |
|---|---|---|
| 1 | GitHub codegen_instructions | Always-current SDK patterns — fetch https://raw.githubusercontent.com/googleapis/js-genai/refs/heads/main/codegen_instructions.md |
| 2 | Google AI docs via WebFetch | Official docs — https://ai.google.dev/gemini-api/docs/{topic} (append .md.txt for markdown) |
| 3 | Local cached docs (if available at ~/Documents/google-gemini-context/) |
Pre-fetched topics — 24 JS, 24 Python, 7 common |
When the user asks about a Gemini topic:
~/Documents/google-gemini-context/, read the matching file; otherwise use WebFetch on https://ai.google.dev/gemini-api/docs/{topic}.md.txtThese are the most common mistakes. Apply these even without reading the full references:
| Claude Might Suggest | Correct |
|---|---|
@google/generative-ai |
@google/genai |
google-generativeai (Python) |
google-genai |
GoogleGenerativeAI |
GoogleGenAI |
genAI.getGenerativeModel() |
ai.models.generateContent() |
model.startChat() / chat.sendMessage() |
ai.chats.create() / chat.send() |
generationConfig |
config |
stream=True (method param) |
config={"stream": True} |
gemini-pro |
gemini-2.5-flash |
gemini-pro-vision |
gemini-2.5-flash (unified multimodal) |
| 4 safety categories | 5 categories (include HARM_CATEGORY_CIVIC_INTEGRITY) |
HARM_CATEGORY_DANGEROUS_CONTENT |
HARM_CATEGORY_DANGEROUS (no _CONTENT) |
X-Goog-Api-Key (capitalised) |
x-goog-api-key (lowercase) |
| Daily rate limits | No daily limits — only per-minute (RPM, TPM) |
import { GoogleGenAI } from "@google/genai";
const ai = new GoogleGenAI({}); // auto-reads GEMINI_API_KEY env var
const response = await ai.models.generateContent({
model: "gemini-2.5-flash",
contents: "Your prompt"
});
from google import genai
client = genai.Client() # auto-reads GEMINI_API_KEY env var
response = client.models.generate_content(
model="gemini-2.5-flash",
contents="Your prompt"
)
If you have a local cache at ~/Documents/google-gemini-context/, it contains:
| Directory | Contents |
|---|---|
javascript/ |
24 topic files — quickstart, function-calling, streaming, structured-output, etc. |
python/ |
24 topic files — same topics as JavaScript |
common/ |
7 cross-language files — safety, pricing, rate-limits, errors, auth, regions, openai-compat |
rest-api/ |
REST endpoint docs |
MODELS.md |
Current model IDs, capabilities, token limits, rate limits |
googlegenai-gemini-api.md |
Comprehensive SDK guide (608 lines, JS + Python) |
If not available, fall back to WebFetch on Google AI docs (append .md.txt for markdown format).
| Model | ID | Best For |
|---|---|---|
| Gemini 2.5 Pro | gemini-2.5-pro |
Complex reasoning, advanced coding |
| Gemini 2.5 Flash | gemini-2.5-flash |
Most tasks (recommended default) |
| Gemini 2.5 Flash-Lite | gemini-2.5-flash-lite-preview-06-17 |
Budget, low latency |
| Gemini 2.0 Flash | gemini-2.0-flash |
Fast inference |
| Text Embedding | text-embedding-004 |
Semantic search, RAG (768 dims) |
For full model details, check ~/Documents/google-gemini-context/MODELS.md (if available) or https://ai.google.dev/gemini-api/docs/models.
When information seems wrong or outdated:
https://ai.google.dev/gemini-api/docs/models| When | Read |
|---|---|
| Mapping a query to a documentation file | references/topic-index.md |
| Checking for deprecated patterns before writing code | references/deprecated-patterns.md |
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
jezweb/claude-skills
anthropics/claude-code
mblode/agent-skills
github/awesome-copilot
leonxlnx/taste-skill
sickn33/antigravity-awesome-skills
gemini-guide is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
gemini-guide has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in gemini-guide — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Keeps context tight: gemini-guide is the kind of skill you can hand to a new teammate without a long onboarding doc.
Solid pick for teams standardizing on skills: gemini-guide is focused, and the summary matches what you get after install.
gemini-guide is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in gemini-guide — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added gemini-guide from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
I recommend gemini-guide for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
gemini-guide reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 25