Agent skill

gemini-specialist

Use Gemini CLI for massive context tasks (1M-2M tokens). Orchestrator evaluates safety and directs usage patterns intelligently.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/ai-llm/gemini-specialist/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 Specialist - Orchestrated Integration Delegate heavy-lifting tasks to Gemini CLI while maintaining safety through intelligent direction. ## Workflow 1. **Evaluate operation**: - File criticality (configs, core logic, data)? - Git status (clean, uncommitted changes)? - Operation type (analysis, generation, modification)? 2. **Choose pattern**: - **Low risk** (analysis, new files): Direct execution - **Medium risk** (refactoring, critical files): Temp-first review - **High risk** (data files, configs): Git commit + temp-first 3. **Structure prompt**: - Be specific (bounded scope = predictable output) - State constraints ("preserve all function signatures") - Define output format ("complete file" vs "suggestions only") 4. **Execute with safety**: ```bash # Pattern 1: Direct (low risk) gemini -p "prompt" < input.txt --yolo -o text > output.txt # Pattern 2: Temp-first (medium risk) gemini -p "prompt" < critical.py --yolo -o text > /tmp/gemini-out.py # Validate, then apply if good # Pattern 3: Git safety net (high risk) git add . && git commit -m "pre-gemini backup" gemini -p "prompt" --yolo -o text < file > file # If bad: git restore file ``` 5. **Validate output**: - Check fil

What's inside
Steps it walks through
  1. Workflow
  2. When to Use
  3. Gemini Capabilities
  4. Key Principle
Ships with 1 file
  • metadata.json
Commands it runs
gemini -p "prompt" < input.txt --yolo -o text > output.txt
gemini -p "prompt" < critical.py --yolo -o text > /tmp/gemini-out.py
git add . && git commit -m "pre-gemini backup"
gemini -p "prompt" --yolo -o text < file > file
More from claude-skill-registry
All skills →
About this skill
What does the gemini-specialist skill do?

Use Gemini CLI for massive context tasks (1M-2M tokens). Orchestrator evaluates safety and directs usage patterns intelligently.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill gemini-specialist --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