Skill176 estrellas del repoactualizado 3d ago
gemini
This Claude Code skill provides command-line access to Google's Gemini model for conducting web research, processing multimodal content like PDFs and images, or obtaining alternative perspectives on tasks. Use it when you need web-based information gathering, document or image analysis, or want to cross-verify results with a different AI model while working within Claude Code workflows.
Instalar en Claude Code
Copiargit clone --depth 1 https://github.com/ykdojo/safeclaw /tmp/gemini && cp -r /tmp/gemini/setup/skills/gemini ~/.claude/skills/geminiDespués abre una sesión nueva de Claude Code; el skill carga automáticamente.
Definición
SKILL.md
# Gemini CLI Use Gemini for web research, multimodal tasks (PDFs, images), or as a second opinion. ## Usage ```bash gemini --yolo --model gemini-3.1-pro-preview --prompt "Your task" ``` ## Examples Reddit research: ```bash gemini -y -m gemini-3.1-pro-preview -p "Research what people on Reddit say about Claude Code" ``` Analyze an image: ```bash gemini -y -m gemini-3.1-pro-preview -p "Describe this image: /path/to/image.png" ``` Analyze a PDF: ```bash gemini -y -m gemini-3.1-pro-preview -p "Summarize this PDF: /path/to/doc.pdf" ``` ## Notes - File writes only work in current directory (not /tmp) - Requires GEMINI_API_KEY env var