gemini-specialist
Use Gemini CLI for massive context tasks (1M-2M tokens). Orchestrator evaluates safety and directs usage patterns intelligently.
npx skills add majiayu000/claude-skill-registry --skill gemini-specialist --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Workflow
- When to Use
- Gemini Capabilities
- Key Principle
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
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.
