Agent skill · Code Review & Quality

gemini

Use when the user asks to run Gemini CLI for code review, plan review, big context (>200k) processing or when the user explicitly requests Gemini cli operation orchestrated by you. Ideal for comprehensive analysis requiring large context windows. Uses Gemini 3 Pro by default for state-of-the-art reasoning and coding.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill gemini-alchimie-di-circe-extractor-desktop-ap-2 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/ai-llm/gemini-alchimie-di-circe-extractor-desktop-ap-2/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 Skill Guide ## When to Use Gemini - WHEN ASKED TO BE ACTIVATED - **Code Review**: Comprehensive code reviews across multiple files - **Plan Review**: Analyzing architectural plans, technical specifications, or project roadmaps - **Big Context Processing**: Tasks requiring >200k tokens of context (entire codebases, documentation sets) - **Multi-file Analysis**: Understanding relationships and patterns across many files ## ⚠️ Critical: Background/Non-Interactive Mode Warning **NEVER use `--approval-mode default` in background or non-interactive shells** (like Claude Code tool calls). It will hang indefinitely waiting for approval prompts that cannot be provided. **For automated/background reviews:** - ✅ Use `--approval-mode yolo` for fully automated execution - ✅ OR wrap with timeout: `timeout 300 gemini ...` - ❌ NEVER use `--approval-mode default` without interactive terminal **Symptoms of hung Gemini:** - Process running 20+ minutes with 0% CPU usage - No network activity - Process state shows 'S' (sleeping) **Fix hung process:** ```bash # Check if hung ps aux | grep gemini | grep -v grep # Kill if necessary pkill -9 -f "gemini.*gemini-3-pro-preview" ``` ## Running a Task

What's inside
Steps it walks through
  1. When to Use Gemini
  2. ⚠️ Critical: Background/Non-Interactive Mode Warning
  3. Running a Task
  4. Quick Reference
  5. Model Selection Guide
  6. Common Use Cases
  7. Code Review (Background/Automated)
  8. Plan Review (Background/Automated)
  9. Big Context Analysis (Background/Automated)
  10. Interactive Code Review (Terminal Only)
  11. Following Up
  12. Error Handling
  13. Troubleshooting Hung Gemini Processes
  14. Detection
Ships with 1 file
  • metadata.json
Commands it runs
Check if hung
ps aux | grep gemini | grep -v grep
Kill if necessary
pkill -9 -f "gemini.*gemini-3-pro-preview"
gemini -m gemini-3-pro-preview --approval-mode yolo "Review this codebase for security issues"
timeout 300 gemini -m gemini-3-pro-preview --approval-mode yolo "Review this codebase"
gemini -m gemini-3-pro-preview -i "Review the authentication system" --approval-mode auto_edit
For background execution (Claude Code, CI/CD, etc.)
gemini -m gemini-3-pro-preview --approval-mode yolo \
With timeout safety (5 minutes)
More from claude-skill-registry
All skills →
About this skill
What does the gemini skill do?

Use when the user asks to run Gemini CLI for code review, plan review, big context (>200k) processing or when the user explicitly requests Gemini cli operation orchestrated by you. Ideal for comprehensive analysis requiring large context windows. Uses Gemini 3 Pro by default for state-of-the-art reasoning and coding.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill gemini-alchimie-di-circe-extractor-desktop-ap-2 --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