Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

Use Gemini CLI from Claude Code to review code or delegate tasks

Install to Claude Code

/plugin install gemini@gemini-cli-plugin-cc

Run in Claude Code. Add the marketplace first with /plugin marketplace add Szetty/gemini-cli-plugin-cc if you haven't already.

README.md

gemini-cli-plugin-cc

Use Gemini CLI from Claude Code to review code or delegate tasks.

Inspired by codex-plugin-cc — this plugin brings the same cross-model workflow to Gemini.

Features

  • Code review — Get Gemini's perspective on your code with /gemini:review
  • Adversarial review — Stress-test specific assumptions with /gemini:adversarial-review
  • Task delegation — Hand off work to Gemini in the background with /gemini:delegate
  • Job management — Track and retrieve results with /gemini:status, /gemini:result, /gemini:cancel

Prerequisites

  npm install -g @google/gemini-cli
  gemini auth login
  • Node.js 18.18 or later

Installation

From the marketplace

/plugin marketplace add Szetty/gemini-cli-plugin-cc
/plugin install gemini@gemini-cli-plugin-cc

For development

git clone https://github.com/Szetty/gemini-cli-plugin-cc.git
cd gemini-cli-plugin-cc
npm install
claude --plugin-dir .

Usage

Verify setup

/gemini:setup

Code review

/gemini:review
/gemini:review security
/gemini:review performance src/server.js

Adversarial review

/gemini:adversarial-review find race conditions
/gemini:adversarial-review break the auth flow src/auth/

Delegate a task

/gemini:delegate investigate why the tests are failing
/gemini:status
/gemini:result 1

Cancel a background job

/gemini:cancel 1

MCP Tools

The plugin exposes 7 tools via MCP:

| Tool | Description | |---|---| | gemini_setup | Verify Gemini CLI installation and authentication | | gemini_review | Run a code review (model: pro/flash/flash-lite) | | gemini_adversarial_review | Steerable adversarial review | | gemini_delegate | Delegate a task to run in the background | | gemini_status | Check background job status | | gemini_result | Retrieve completed job output | | gemini_cancel | Cancel a running background job |

How it works

The plugin wraps the gemini CLI in an MCP server. Synchronous tools (review, adversarial review) run gemini -p <prompt> --output-format json and return the result. The delegation tools spawn gemini as a detached background process and track jobs via a local registry in the system temp directory.

Configuration

The plugin respects standard Gemini CLI configuration:

  • Model selection: pro, flash, flash-lite — omit to use Gemini's default
  • Approval mode: default, auto_edit, or yolo (for delegation)

> Vertex AI users: the model aliases pro, flash, and flash-lite are resolved by the Gemini CLI and may not be available in all Vertex AI projects. If you see a ModelNotFoundError, pass an explicit model ID instead, e.g. /gemini:review with model gemini-2.5-flash.

License

Apache-2.0

Related plugins

Browse all →