Asks Gemini CLI for coding assistance. Use for getting a second opinion, code generation, debugging, or delegating coding tasks.
This skill inherits all available tools. When active, it can use any tool Claude has access to.
Executes the local gemini CLI to get coding assistance.
Note: This skill requires the gemini CLI to be installed and available in your system's PATH.
Run a single query using positional prompt:
gemini "Your question or task here"
| Option | Description |
|---|---|
-m MODEL | Specify model |
-y, --yolo | Auto-approve all tool executions |
For all available options, run
gemini --help
Ask a coding question:
gemini "How do I implement a binary search in Python?"
Use a specific model:
gemini -m gemini-2.5-pro "Review this code for potential issues"
Let Gemini make changes automatically:
gemini -y "Refactor this function to use async/await"
GEMINI_API_KEY environment variable for authentication-y/--yolo for automatic execution without confirmation prompts