Gemini cli
Skill hackermanishackerman/claude-skills-vault/.claude/skills/gemini-cli
🛠️ Curate and enhance your coding skills with Claude Skills Vault, a collection of commands and MCP server guides for efficient development.
npx -y skills add hackermanishackerman/claude-skills-vault --skill gemini-cliAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run Gemini CLI for AI queries. Use when user asks to "run/ask/use gemini", compare Claude vs Gemini, or delegate tasks to Gemini.
SKILL.md
1.4 KB, as published. Nobody here has run it
Gemini CLI
Interact w/ Google's Gemini CLI locally. Run queries, get responses, compare outputs.
Prerequisites
Gemini CLI must be installed & configured:
- Install: https://github.com/google-gemini/gemini-cli
- Auth: Run
gemini& sign in w/ Google account - Verify:
gemini --version
When to Use
- User asks to "run/ask/use gemini"
- Compare Claude vs Gemini responses
- Get second AI opinion
- Delegate task to Gemini
Usage
# One-shot query
gemini "Your prompt"
# Specific model
gemini -m gemini-3-pro-preview "prompt"
# JSON output
gemini -o json "prompt"
# YOLO mode (auto-approve)
gemini -y "prompt"
# File analysis
cat file.txt | gemini "Analyze this"
Comparison Workflow
- Provide Claude's response first
- Run same query via Gemini CLI
- Present both for comparison
CLI Options
| Flag | Desc |
|---|---|
-m | Model (gemini-3-pro) |
-o | Output: text/json/stream-json |
-y | Auto-approve (YOLO) |
-d | Debug mode |
-s | Sandbox mode |
-r | Resume session |
-i | Interactive after prompt |
Best Practices
- Quote prompts w/ double quotes
- Use
-o jsonfor parsing - Pipe files for context
- Specify model for specific capabilities