io.github.Lykhoyda/ask-gemini

AI 与智能体

by lykhoyda

连接 Claude 与 Gemini CLI,支持 AI 协作、代码审查,以及获取第二意见。

什么是 io.github.Lykhoyda/ask-gemini

连接 Claude 与 Gemini CLI,支持 AI 协作、代码审查,以及获取第二意见。

README

<div align="center">

Ask LLM

Give your AI coding assistant a second opinion — from a different model.

Claude Code, Codex CLI, Cursor, Claude Desktop, or any of 40+ MCP clients can call Codex, Claude, Grok, Antigravity, Ollama, or Gemini to review a diff, debate a plan, or catch the bug the first model missed. Standard MCP; no prompt hacks.

CI Release GitHub Release npm License: MIT

Quick Start · Choose a reviewer · Claude Code plugin · Docs · Packages

</div>
text
You:    ask codex to review src/auth.ts for security issues
Codex:  ⚠ verifyToken() compares tokens with === — not timing-safe (line 42)
        ⚠ the session cookie is missing a SameSite attribute
Claude: Good catches — applying both fixes to src/auth.ts.

One prompt. A second model reviews independently; your assistant applies the fix. No copy-pasting between tools.

Why a second opinion?

Your primary AI is confident, but confidence isn't correctness. A second model with no stake in the first answer catches what it glossed over.

You want to…Ask LLM does
Review a diffA different model analyzes your changes and surfaces issues your primary AI missed
Debate a planSend an architecture proposal for critique, alternatives, and trade-off analysis
Get a second opinion on codeHave another model review an approach independently before you commit to it
Read more than fitsGemini and Antigravity ingest whole codebases in one call (1M+ tokens)
Keep it localRoute reviews through Ollama when nothing can leave your machine
Compare models side by sidemulti-llm fans one prompt out to several providers in parallel

Quick Start

Prerequisites: Node.js 20+ and at least one provider CLI installed and authenticated (see Provider setup).

Claude Code

bash
# One install, every provider — auto-detects what you have
claude mcp add --scope user ask-llm -- npx -y @ask-llm/mcp

Then try: ask codex to review my last commit. Run npx @ask-llm/mcp doctor if anything looks off.

<details> <summary>Install providers individually instead</summary>
bash
claude mcp add --scope user codex -- npx -y @ask-llm/codex-mcp
claude mcp add --scope user grok -e XAI_API_KEY="$XAI_API_KEY" -- npx -y @ask-llm/grok-mcp
claude mcp add --scope user antigravity -- npx -y @ask-llm/antigravity-mcp
claude mcp add --scope user ollama -- npx -y @ask-llm/ollama-mcp
claude mcp add --scope user gemini -- npx -y @ask-llm/gemini-mcp
</details>

Cursor

Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (user):

json
{
  "mcpServers": {
    "ask-llm": { "command": "npx", "args": ["-y", "@ask-llm/mcp"] }
  }
}

Codex CLI

toml
# ~/.codex/config.toml
[mcp_servers.ask-llm]
command = "npx"
args = ["-y", "@ask-llm/mcp"]

Want Codex to consult Claude specifically? codex mcp add claude -- npx -y @ask-llm/claude-mcp

Claude Desktop

Add to claude_desktop_config.json:

json
{
  "mcpServers": {
    "ask-llm": { "command": "npx", "args": ["-y", "@ask-llm/mcp"] }
  }
}

Pi

Pi has no built-in MCP client, so it installs the host package instead, which registers native ask-* tools plus the shared skills:

bash
pi install npm:@ask-llm/plugin

Then use /skill:codex-review, /skill:multi-review, /skill:compare, /skill:brainstorm, or just describe what you want. See the Pi host guide for trust, data-transfer, and compatibility details.

<details> <summary>Any other MCP client (STDIO)</summary>
json
{ "command": "npx", "args": ["-y", "@ask-llm/mcp"] }

Swap @ask-llm/mcp for @ask-llm/codex-mcp, @ask-llm/claude-mcp, @ask-llm/grok-mcp, @ask-llm/antigravity-mcp, @ask-llm/ollama-mcp, or @ask-llm/gemini-mcp to install a single provider.

</details>

Choose your reviewer

The unified @ask-llm/mcp server is the recommended install: one registration, every provider you have, and parallel fan-out via multi-llm. Each provider is also available standalone.

ProviderBest forModel (default → fallback)Requires
CodexCode reasoning, targeted reviews, architecture critiquegpt-5.6-solgpt-5.6-terraOpenAI/Codex account
ClaudeAn independent Claude opinion from Codex or another non-Claude hostopussonnetClaude Code CLI; read-only workspace tools
GrokGrok 4.6 critique via xAI API or the official Grok CLIgrok-4.6, reasoning high (no fallback)XAI_API_KEY or Grok CLI; one explicit harness per call
AntigravitySubscription-backed second opinion; large-context readsgemini-3.1-progemini-3.5-flash (--effort high)Google AI Pro/Ultra; agy CLI. Experimental, one-shot
OllamaPrivate, offline, zero-cost reviewqwen3.8:27b (no auto-fallback)Ollama running locally
GeminiWhole-codebase reads (1M+ tokens)gemini-3.1-pro-previewgemini-3.8-flashEnterprise Gemini seat (see note)

Gemini CLI is enterprise-only since 2026-06-18. Google restricted Gemini CLI to Gemini Code Assist Standard/Enterprise seats; free, Google AI Pro, and Ultra accounts lost access. @ask-llm/gemini-mcp still installs, but non-enterprise accounts get actionable guidance instead of output. On a subscription plan, use Antigravity (Google's sanctioned successor, covered by AI Pro/Ultra), Codex, Claude, or Ollama. Announcement

Fallbacks fire only under each provider's documented conditions (quota for Gemini/Codex, overload for Claude, rate limit for Antigravity). Grok and Ollama never substitute a model: Grok sends the exact harness catalog ID unchanged, and Ollama returns a clear ollama pull error if the requested model isn't local. Full details in Model Selection.

The Ask LLM plugin (Claude Code, Cursor Agent, Pi)

MCP gives your assistant the tools. The plugin, @ask-llm/plugin, adds the workflows: slash-command reviews with a validation pipeline, multi-model brainstorming, and opt-in continuous pair review.

code
/plugin marketplace add Lykhoyda/ask-llm
/plugin install ask-llm@ask-llm-plugins
CommandWhat it does
<nobr>/multi-review</nobr>Parallel Antigravity + Codex review with a 4-phase validation pipeline and consensus highlighting
<nobr>/codex-review</nobr> · <nobr>/gemini-review</nobr> · <nobr>/ollama-review</nobr> · <nobr>/antigravity-review</nobr>Single-provider reviews with confidence filtering
<nobr>/sol-review</nobr>Model-pinned GPT-5.6 Sol review through Codex
<nobr>/grok-review</nobr>Metered Grok review through xAI with exact model attribution and no fallback
<nobr>/fable-review</nobr>Isolated, read-only review that requests the native Fable model and discloses runtime verification limits
<nobr>/brainstorm</nobr>Claude Opus researches your real files in parallel with external providers, then synthesizes, weighting verified findings higher. Also supports an exact no-Gemini Grok + GPT-5.6 Sol panel routed through Cursor Agent
<nobr>/compare</nobr>Raw side-by-side answers from multiple providers, no synthesis
<nobr>codex-pair</nobr>Opt-in continuous review: Codex checks every Edit/Write/MultiEdit when a .codex-pair/context.md marker is present

Review agents follow a 4-phase pipeline inspired by Anthropic's code-review plugin: context gathering, prompt construction with explicit false-positive exclusions, synthesis, and source-level validation of each finding.

<details> <summary>Host support matrix</summary>

@ask-llm/plugin is one package, one version, one release lifecycle, and one canonical skill corpus. Claude Code loads its marketplace agents and hooks; Cursor Agent loads the adapted /codex-pair and /grok-pair skills through Agent Skills plus mcp.json (agent --plugin-dir ./packages/claude-plugin; see the Cursor Agent host guide); Pi loads explicit native tools, portable skill adapters, and a thin lifecycle extension.

CapabilityClaude CodeCursor AgentCodex CLI hostPi
Provider transportMCPMCP (mcp.json, unified ask-llm only)MCPnative Ask LLM tools (no built-in MCP)
Review/compare/brainstorm skillsyesAgent Skillstools only/skill:<name> + natural language
Isolated reviewer contexts / Fableyesno; fable-review excludednono; fable-review excluded
codex-pairhookson-demand persisted sessionnolifecycle extension
/grok-pairyes (explicit Cursor/xAI/CLI route)direct xAI/CLI routes via pinned unified ask-llm (or user-installed ask-grok)noexcluded
Blocking HIGH Stop gateopt-innonono; surfaced non-blockingly
Async pairing in one-shot printn/aon-demand skillnounsupported

Pi specifics: codex-pair requires the repository marker, Pi project trust, and interactive user-owned consent via /codex-pair; a committed marker alone never authorizes source transfer or cost. Pi surfaces findings non-blockingly and does not claim Claude's blocking Stop gate or one-shot print parity. fable-review is Claude Code-only. Provider CLI authentication is separate from Pi's host-model login. Update or remove with pi update npm:@ask-llm/plugin / pi remove npm:@ask-llm/plugin.

</details>

See the plugin docs for hooks, agents, and configuration.

MCP tools

ToolPackagePurpose
ask-llm@ask-llm/mcpUnified orchestrator: pick a provider per call, or fan out to every installed provider
multi-llm@ask-llm/mcpSend one prompt to multiple providers in parallel; returns per-provider responses and usage in one call
ask-codex@ask-llm/codex-mcpCodex CLI. GPT-5.6 Sol with Terra fallback. Omit sessionId for ephemeral use, or pass sessionId: "" first to persist and resume
ask-claude@ask-llm/claude-mcpClaude Code CLI. Opus with Sonnet fallback; native sessions; Read/Glob/Grep-only workspace access
ask-grok@ask-llm/grok-mcpOne-shot Grok prompt through explicit xai-api (default) or grok-cli; exact harness model ID; no harness/model fallback
ask-cursor-agent@ask-llm/mcpModel-neutral Cursor Agent harness: separate provider (claude, codex, gemini, grok) + exact Cursor catalog model verified against that family; read-only ask mode; no force/trust/spend changes or fallback
ask-antigravity@ask-llm/antigravity-mcpGoogle Antigravity (agy) for a subscription-backed second opinion. Experimental; one-shot
ask-ollama@ask-llm/ollama-mcpLocal Ollama. Fully private, zero cost. Server-side conversation replay via sessionId
ask-gemini@ask-llm/gemini-mcpGemini CLI with @ file syntax. 1M+ token context. Live progressive output via stream-json
ask-gemini-edit@ask-llm/gemini-mcpStructured OLD/NEW code edit blocks from Gemini
fetch-chunk@ask-llm/gemini-mcpRetrieve chunks from cached large responses
get-usage-statsallPer-session token totals, fallback counts, breakdowns by provider/model. In-memory only
diagnose@ask-llm/mcpSelf-diagnosis: Node version, PATH resolution, provider CLI presence and versions. Read-only
pingallConnection test

Session-capable ask-* tools accept an optional sessionId and return a structured AskResponse (provider, response, model, sessionId, usage) via MCP outputSchema alongside the human-readable text. Codex requires sessionId: "" on the first call for a resumable thread. The orchestrator also exposes usage://current-session as an MCP Resource for live JSON snapshots.

Things to say

code
ask codex to review the changes in src/auth.ts for security issues
ask claude for an independent opinion on this architecture        (from Codex or another non-Claude client)
ask antigravity to debate the plan in docs/design.md
ask ollama to explain src/config.ts                                 (runs locally, nothing leaves your machine)
ask gemini to summarize @. the current directory                    (1M+ context; @ syntax is Gemini-only)
use multi-llm to compare what codex and grok think about this approach

More patterns in How to Ask and Multi-Turn Sessions.

CLI

The @ask-llm/mcp binary (ask-llm-mcp) starts the MCP server when run with no arguments. With arguments it's a CLI; ask-llm-mcp --help is the canonical reference.

bash
# Diagnose your setup: Node version, PATH, provider CLI versions, env vars
npx @ask-llm/mcp doctor                       # human-readable
npx @ask-llm/mcp doctor --json                # full JSON, exit 1 on error
npx @ask-llm/mcp doctor --format toon         # bounded, versioned agent-facing TOON pilot
npx @ask-llm/mcp doctor --format toon --full  # full TOON escape hatch

# Interactive multi-provider REPL: switch providers, persist sessions, watch usage live
npx @ask-llm/mcp repl

The REPL keeps a session per provider (/provider codex, /new, /sessions, /usage) and inherits all executor behavior: quota fallback, stream-json output for Gemini, native session resume.

Provider setup

Install and authenticate whichever providers you want to consult. The unified server detects what's present.

ProviderSetup
Codex CLIInstall and sign in
Claude Code CLIInstall and sign in (for Codex or other clients consulting Claude)
xAI API / Grok CLISet XAI_API_KEY for the default metered harness, or install and authenticate official Grok Build and pin harness: "grok-cli" per request (or set ASK_GROK_HARNESS=grok-cli). No failover between harnesses
Cursor CLIOptional model-neutral harness. Authenticate and pick an exact ID from agent --list-models
Antigravity CLI (agy)Version >= 1.1.5, logged in once (Google AI Pro/Ultra). Verify with agy --version
OllamaRunning locally with a model pulled: ollama pull qwen3.8:27b
Gemini CLInpm install -g @google/gemini-cli && gemini login. Enterprise-gated since 2026-06-18

Packages

PackageWhat it isVersionDownloads
@ask-llm/mcpUnified MCP server (recommended): all providers, multi-llm, ask-cursor-agent, doctor, REPLnpmdownloads
@ask-llm/pluginClaude Code + Cursor Agent + Pi host package (skills, agents, hooks)npmdownloads
@ask-llm/codex-mcpCodex-only MCP servernpmdownloads
@ask-llm/claude-mcpClaude-only MCP servernpmdownloads
@ask-llm/grok-mcpGrok-only MCP servernpmdownloads
@ask-llm/antigravity-mcpAntigravity-only MCP servernpmdownloads
@ask-llm/ollama-mcpOllama-only MCP servernpmdownloads
@ask-llm/gemini-mcpGemini-only MCP servernpmdownloads
<details> <summary>Migrating from the old package names</summary>

All public MCP packages now live in the @ask-llm npm organization. The old names are deprecated, but executable names are unchanged: update the package argument in your MCP config and commands such as ask-codex-mcp and ask-llm-mcp doctor keep working after a global install.

Old packageUse instead
ask-llm-mcp@ask-llm/mcp
ask-codex-mcp@ask-llm/codex-mcp
@anton-lykhoyda/ask-claude-mcp@ask-llm/claude-mcp
ask-antigravity-mcp@ask-llm/antigravity-mcp
ask-ollama-mcp@ask-llm/ollama-mcp
ask-gemini-mcp@ask-llm/gemini-mcp

The installation guide has the complete package-to-executable mapping.

</details>

Documentation

Contributing

Contributions are welcome. Start with the open issues and CONTRIBUTING.md.

License

MIT. See LICENSE.

Disclaimer: Ask LLM is an unofficial, third-party tool and is not affiliated with, endorsed, or sponsored by Anthropic, Google, OpenAI, or xAI.

常见问题

io.github.Lykhoyda/ask-gemini 是什么?

连接 Claude 与 Gemini CLI,支持 AI 协作、代码审查,以及获取第二意见。

相关 Skills

Claude接口

by anthropics

Universal
热门

面向接入 Claude API、Anthropic SDK 或 Agent SDK 的开发场景,自动识别项目语言并给出对应示例与默认配置,快速搭建 LLM 应用。

想把Claude能力接进应用或智能体,用claude-api上手快、兼容Anthropic与Agent SDK,集成路径清晰又省心

AI 与智能体
未扫描176.4k

多智能体架构

by alirezarezvani

Universal
热门

聚焦多智能体系统架构设计,梳理 Supervisor、Swarm、分层和 Pipeline 等模式,覆盖角色定义、通信协作与性能评估,适合规划稳健可扩展的 AI agent 编排方案。

帮你系统解决多智能体应用的架构设计与协同编排难题,适合构建复杂 AI 工作流,成熟度高、社区认可也很亮眼。

AI 与智能体
未扫描26.0k

RAG架构师

by alirezarezvani

Universal
热门

聚焦生产级RAG系统设计与优化,覆盖文档切块、检索链路、索引构建、召回评估等关键环节,适合搭建可扩展、高准确率的知识库问答与检索增强应用。

面向RAG落地,把知识库、向量检索和生成链路系统串联起来,做架构设计时更清晰,也更少踩坑。

AI 与智能体
未扫描26.0k

相关 MCP Server

知识图谱记忆

编辑精选

by Anthropic

热门

Memory 是一个基于本地知识图谱的持久化记忆系统,让 AI 记住长期上下文。

帮 AI 和智能体补上“记不住”的短板,用本地知识图谱沉淀长期上下文,连续对话更聪明,数据也更可控。

AI 与智能体
89.7k

顺序思维

编辑精选

by Anthropic

热门

Sequential Thinking 是让 AI 通过动态思维链解决复杂问题的参考服务器。

这个服务器展示了如何让 Claude 像人类一样逐步推理,适合开发者学习 MCP 的思维链实现。但注意它只是个参考示例,别指望直接用在生产环境里。

AI 与智能体
89.2k

by deusdata

热门

持久化的代码库知识图谱,可跨会话保留上下文,在 session 重启或上下文压缩后仍能继续使用。

专治 AI 编程助手“会话失忆”,把代码库沉淀为持久知识图谱,重启或压缩上下文后也能无缝续上开发状态。

AI 与智能体
37.3k

评论