Interface with the Gemini agent for operations requiring the Gemini model.
Interact with the Gemini agent. This skill wraps input in strict JSON enforcement prompts and handles retries.
Image generation? Use the gemini-image-generator skill instead. This skill is for text/reasoning tasks only.
Triggers: "ask gemini", "gemini help", "consult gemini"
# Usage: .claude/skills/gemini/gemini-agent.sh "Your prompt here"
.claude/skills/gemini/gemini-agent.sh "Summarize the history of AI."You can pass a JSON object with prompt, context, and schema.
{
"prompt": "Generate a user profile",
"schema": {
"type": "object",
"properties": {
"username": {"type": "string"},
"age": {"type": "integer"}
}
}
}.claude/skills/gemini/gemini-agent.sh '{"prompt": "...", "schema": {...}}'Success:
{
"key": "value",
...
}Error:
{
"ok": false,
"error": {
"code": "error_code",
"message": "Description"
}
}gemini/SKILL.md
1721217
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.