Skip to main content

Compare

Bernstein vs Google Gemini CLI: quick decision guide

Google's Gemini CLI runs gemini-3.1-pro / gemini-3-flash / gemini-3.1-flash-lite from a terminal with non-interactive mode and MCP support. Strong on long-context reasoning over big repos.

Page built on 2026-08-16 from data/adapters-meta.json. Every claim below links to its primary source.

Install both

Google Gemini CLI

npm install -g @google/gemini-cli

Bernstein

pipx install bernstein

Apache-2.0. Deterministic Python scheduler.

Feature matrix

CapabilityGoogle Gemini CLIBernstein
Install methodnpm install -g @google/gemini-clipipx install bernstein
LicenseGoogle proprietaryApache-2.0
AuthenticationGEMINI_API_KEY or Google AI Studio sessionPer-agent credential scoping (no shared key)
Multi-agent orchestrationOne agent in a terminalGoogle Gemini CLI plus 40+ other adapters in parallel worktrees
MCP supportYesYes
Parallel-safe in worktreesYesYes (designed around git worktrees)
HMAC-chained audit logNoYes (RFC 2104 SHA-256 chain in .sdd/)
Deterministic schedulerNot applicable (single-agent CLI)Yes (Deterministic Python scheduler)

Adapter source: src/bernstein/adapters/gemini.py | Upstream homepage: github.com

Verifiable facts

The brief for this surface requires at least three facts that a reader can verify against a primary source. The list below is built from the bernstein adapter source and, when available, the upstream project's own pages.

  1. Bernstein ships a Google Gemini CLI adapter at src/bernstein/adapters/gemini.py that wraps the upstream CLI as one of 42 routable agents. [source: bernstein adapter source, as of 2026-08-16]
  2. Upstream install command, as recorded in the bernstein adapter, is "npm install -g @google/gemini-cli". [source: upstream docs, as of 2026-08-16]
  3. Bernstein last verified its adapter against upstream @google/gemini-cli 0.40.x on 2026-05-05. [source: bernstein adapter source, as of 2026-05-05]
  4. Google Gemini CLI is flagged parallel-safe in Bernstein's adapter contract, meaning multiple instances can run in separate git worktrees against the same goal. [source: bernstein adapter source, as of 2026-08-16]
  5. Google Gemini CLI supports the Model Context Protocol per the bernstein adapter contract, so Bernstein can inject MCP servers into its session. [source: bernstein adapter source, as of 2026-08-16]
  6. Google Gemini CLI is distributed under Google proprietary, per the operator-curated overlay in data/adapters-overlay.json. [source: upstream docs, as of 2026-08-16]

Where Google Gemini CLI fits in Bernstein

Bernstein registers Google Gemini CLI under the slug "gemini" and the registry name "gemini". The adapter source lives at src/bernstein/adapters/gemini.py in the bernstein repo and was last touched at build time 2026-08-16. The Google Gemini CLI adapter file is 361 lines and 13,591 bytes long, fingerprinted 8241cb35d741d169 (first 16 hex chars of SHA-256). Operators install Google Gemini CLI on a worker box with "npm install -g @google/gemini-cli" before Bernstein routes any task to it. No upstream GitHub repository is recorded in the bernstein adapter for Google Gemini CLI; refer to the upstream vendor's documentation when auditing. The Google Gemini CLI project's homepage at github.com is the primary source for upstream release notes. Bernstein last verified the Google Gemini CLI adapter against upstream @google/gemini-cli 0.40.x on 2026-05-05, recorded inline in the adapter source. Google Gemini CLI accepts MCP servers, so Bernstein injects the same MCP toolset it provides every other MCP-aware adapter. Google Gemini CLI is flagged parallel-safe, meaning multiple Bernstein workers can spawn it in separate git worktrees against the same goal without file collisions. Google Gemini CLI ships under Google proprietary per the operator-curated overlay; cross-check against the upstream LICENSE file before production use. Auth model for Google Gemini CLI is "GEMINI_API_KEY or Google AI Studio session", scoped per adapter so a leaked key never grants access to a different model family. Bernstein routes tasks to Google Gemini CLI when its pass rate on similar work clears the configured threshold, otherwise the deterministic Python scheduler picks a different adapter from the 40+ adapter catalog.

Adapter source excerpt

The module docstring of the Google Gemini CLI adapter, as it stands in the bernstein repo. Punctuation is normalised for the web; the wording is the author's. Length: 1738 characters.

Google Gemini / Antigravity CLI adapter. The upstream CLI is changing binary names ahead of a deprecation date: the legacy ``gemini`` binary stops serving free / AI Pro / Ultra subscribers on 2026-06-18; the replacement ``antigravity`` binary uses the same model set and the same ``--output-format`` semantics. Enterprise customers retain the legacy binary via paid API keys. The adapter is dual-binary aware. At spawn time it discovers which binary is on ``PATH`` using a deterministic cascade defined by ``_DISCOVERY_CASCADE``: 1. The operator override ``BERNSTEIN_GEMINI_BINARY`` wins when set (and must resolve on ``PATH``, regardless of ``strict`` mode). 2. Otherwise ``antigravity`` is preferred. 3. The legacy ``gemini`` binary is used as a fallback. 4. If neither resolves, behavior depends on the ``strict`` flag passed to :func:`resolve_google_cli_binary`: - ``strict=True`` (used by ``bernstein adapters check`` / doctor): the adapter raises :class:`BinaryNotInstalledError`. - ``strict=False`` (default, used by :meth:`GeminiAdapter.spawn`): the resolver returns the first cascade entry as a fallback, letting downstream :func:`subprocess.Popen` raise the natural ``FileNotFoundError`` on actual invocation. This matches the codex / aider adapter posture and keeps tests that mock ``subprocess`` from tripping on eager discovery. The adapter contract (flags, env-isolation allow-list, sandbox profile, rate-limit meter, network policy) is unchanged: only the binary name and the discovery step differ. Recommended models (identical on both binaries): ``gemini-3.1-pro`` (highest reasoning), ``gemini-3-flash`` (default in the Gemini app, Pro-grade reasoning at Flash speed), or ``gemini-3.1-flash-lite`` for the cheapest tier.

Adapter telemetry

Registry namegemini
Adapter classGoogle Gemini CLI
Source filesrc/bernstein/adapters/gemini.py
Source file size361 lines, 13,591 bytes
Source SHA-2568241cb35d741d169fccc9d5c0e00c69d1bc1c4a1499202e3489f24e1165b2e58
Category bucketopenai-family
Upstream repoNot derivable from adapter source
Upstream homepagegithub.com
Last verified upstream@google/gemini-cli 0.40.x on 2026-05-05
Operator-curated overlayYes

When to pick which

Choose Google Gemini CLI

When the task lives or dies on a 1M-token context window - Gemini's long-context tier is currently the cheapest path to whole-repo reasoning, and the CLI exposes that without you wiring up the API yourself.

Choose Bernstein

When you want Gemini's long-context analysis to feed into a multi-step plan that other agents execute. Bernstein lets Gemini do the architecture pass, then spawns Claude / Codex / Aider on the resulting tasks in parallel - each agent picks up only the slice it needs to read.

FAQ

Does Bernstein replace Google Gemini CLI?

No. Bernstein wraps Google Gemini CLI as one of 40+ CLI adapters and routes tasks to it based on per-task pass-rate history. Google Gemini CLI keeps running unchanged; Bernstein decides when it gets work.

Can I run Google Gemini CLI alongside other agents in the same repo?

Yes. Each agent runs in its own git worktree under .sdd/worktrees/{session_id}, so file edits never collide. Bernstein merges results back to the trunk only after the configured quality gates (lint, types, tests) pass.

Is this comparison page handwritten?

No. The template is fixed; every fact and every link is pulled from the bernstein adapter source in the master branch and (when available) the upstream project's own pages. The data extractor lives at scripts/gen-compare-data.mjs. No LLM writes the prose.