thepushkarp/cc-gemini-plugin

19 stars · Last commit 2026-04-14

Gemini CLI integration for Claude Code and Codex.

README preview

# cc-gemini-plugin

Dual-host Gemini CLI integration for Claude Code and Codex.

This repository uses one shared Gemini runtime and two thin host adapters:
- Claude Code exposes `/cc-gemini-plugin:gemini` and `gemini-agent`.
- Codex exposes the bundled `gemini-integration` skill.

It gives each host a clean way to hand large, cross-file analysis tasks to
Gemini instead of solving everything file-by-file.

## Architecture

- Shared bridge runtime at `scripts/gemini-bridge.js`
- Claude Code integration through the plugin manifest, `/cc-gemini-plugin:gemini`
  command, and `gemini-agent`
- Codex integration through the root `SKILL.md` skill definition and
  `agents/openai.yaml`
- Bridge coverage in `tests/gemini-bridge.test.js`

View full repository on GitHub →