Agent skill · Testing & QA

Gemini CLI Helper

Run Gemini CLI commands from Claude with correct Node version. Use when user asks to run Gemini CLI, test Gemini traces, or debug Gemini telemetry.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill gemini-cli-helper --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/ai-llm/gemini-cli-helper/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Gemini CLI Helper Run Gemini CLI commands with the correct Node.js version and configuration. ## Quick Start **Run a Gemini prompt:** ```bash .claude/skills/gemini-cli-helper/scripts/gemini_run.sh "Your prompt here" ``` **Check Gemini CLI status:** ```bash .claude/skills/gemini-cli-helper/scripts/gemini_status.sh ``` ## When to Use This Skill Invoke this skill when: - User asks to run Gemini CLI - User wants to test Gemini trace visibility - User asks to debug Gemini telemetry - User mentions "gemini" CLI commands - Coordinator needs to execute Gemini tasks ## Available Scripts ### `scripts/gemini_run.sh <prompt> [--json]` Run a Gemini CLI prompt with correct Node version. **Usage:** ```bash # Simple prompt .claude/skills/gemini-cli-helper/scripts/gemini_run.sh "Say hello" # With JSON output .claude/skills/gemini-cli-helper/scripts/gemini_run.sh "Say hello" --json # Complex prompt with quotes .claude/skills/gemini-cli-helper/scripts/gemini_run.sh "List 3 things about AILANG" ``` ### `scripts/gemini_status.sh` Check Gemini CLI installation and configuration status. **Usage:** ```bash .claude/skills/gemini-cli-helper/scripts/gemini_status.sh ``` **Output:** ``` Gemini CLI Status ━━

What's inside
Steps it walks through
  1. Quick Start
  2. When to Use This Skill
  3. Available Scripts
  4. scripts/geminirun.sh <prompt> [--json]
  5. scripts/geministatus.sh
  6. Critical Knowledge
  7. Node Version Requirement
  8. Common Errors
  9. Telemetry Configuration
  10. Workflow
  11. 1. Check Status First
  12. 2. Run Prompt
  13. 3. Verify Traces (Optional)
  14. Resources
Ships with 1 file
  • metadata.json
Commands it runs
Simple prompt
With JSON output
Complex prompt with quotes
WRONG - Will fail with "Invalid regular expression flags"
gemini --version  # Uses default Node which may be v18
CORRECT - Use full path with Node v22
export GEMINI_TELEMETRY_ENABLED=true
export GEMINI_TELEMETRY_TARGET=gcp
export GOOGLE_CLOUD_PROJECT=multivac-internal-dev
curl -s "http://localhost:1957/api/observatory/traces?limit=10" | jq '.[].service_name' | sort -u
More from claude-skill-registry
All skills →
About this skill
What does the Gemini CLI Helper skill do?

Run Gemini CLI commands from Claude with correct Node version. Use when user asks to run Gemini CLI, test Gemini traces, or debug Gemini telemetry.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill gemini-cli-helper --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going