- Home
- Skills
- Yuniorglez
- Gemini Elite Core
- Gemini Sdk Expert
gemini-sdk-expert_skill
- Python
7
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill yuniorglez/gemini-elite-core --skill gemini-sdk-expert- SKILL.md5.0 KB
Overview
This skill is a senior-architect level guide and toolkit for building high-reliability systems with the Google Gemini v1.35.0+ ecosystem. It focuses on structured outputs, context caching, and agentic orchestration to deliver predictable, cost-efficient, and multimodal AI applications. The content distills production patterns, anti-patterns, and actionable strategies engineers use in 2026.
How this skill works
The skill prescribes strict structured output using response schemas to guarantee JSON-typed responses and eliminate parsing failures. It describes context caching patterns that persist large context uploads, allowing fast retrieval and huge token-scale workflows. It also covers agentic function-calling patterns, parallel tool invocation, and model-selection guidelines for latency and cost trade-offs.
When to use it
- When you need 100% reliable JSON extraction from LLM outputs for downstream systems.
- When processing thousands of documents where cost and latency are critical.
- When building agentic workflows that must call private APIs or tools securely.
- When handling long-form or multimodal data (video, audio, documents) at scale.
- When you require deterministic behavior for production decisioning or automation.
Best practices
- Enforce responseSchema and set responseMimeType to application/json at the source.
- Use context caching: warm-up uploads, reference cachedContent, and manage TTLs.
- Choose model by role: gemini-3-flash for cost-sensitive extraction, gemini-3-pro for complex reasoning.
- Avoid regex parsing of LLM text; prefer validated structured schemas instead.
- Keep secrets out of code; use secure environment variables and versioned API settings.
Example use cases
- Mass-extraction pipeline: parse metadata from millions of documents with gemini-3-flash and responseSchema.
- Autonomous agent: allow the model to call multiple tools in parallel to complete complex multi-step tasks.
- Multimodal analysis: run scene detection on video and combine with document OCR for enriched asset indexing.
- Semantic caching layer: serve repeated queries from embeddings cache to reduce LLM calls and cost.
- Production reasoning: use gemini-3-pro with strict schemas for architecture reviews or compliance summaries.
FAQ
Define and enforce a responseSchema and set responseMimeType to application/json; use strict validation on the client before ingesting outputs.
When should I use context caching versus re-uploading data each request?
Use context caching for repetitive, large-context workflows (2M+ tokens). Warm-up once, reference cachedContent for subsequent runs, and apply TTLs to control storage cost.