From llm-tools
Get a second opinion from another LLM (codex, gemini, ollama) on architectural decisions, design trade-offs, and security-sensitive code. Use when uncertain or facing a contested code review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/llm-tools:second-opinionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Proactively suggest getting another LLM's perspective when the situation warrants it.
Proactively suggest getting another LLM's perspective when the situation warrants it.
Suggest a second opinion when you detect:
When conditions are met, offer specific options:
This involves [type of decision]. Would you like a second opinion from another LLM?
/codex:review- Get OpenAI's analysis via the official Codex Claude Code plugin when installed/llm-tools:codex review <scope>- Use gopher-ai's Codex CLI fallback when the official plugin is missing or declined/gemini <specific question>- Ask Google Gemini/ollama <question>- Use a local model (keeps data private)/llm-tools:review-loop --llm fable- Fresh-context Claude subagent review (no external CLI, no extra cost)/llm-compare <question>- Compare multiple models
Cross-model rule: a second opinion is most valuable from a different model family than the one that wrote the code. If Claude wrote it, suggest codex/gemini/ollama first. If Codex wrote it (wtcodex flows), suggest the fable review. Never invoke Fable via claude -p — headless print mode bills metered API usage, not the subscription; use the subagent path (or a tmux-driven interactive Claude window when orchestrating from Codex).
Codex routing rule: in Claude Code, prefer /codex:review, /codex:adversarial-review, or /codex:rescue from codex@openai-codex when that official plugin is installed. If it is not installed, use /llm-tools:codex ...; that command warns, prints the official plugin install steps, and can proceed with the existing Codex CLI fallback.
Tailor the suggestion to the context:
For security-sensitive code:
Since this involves authentication logic, you might want a second security review. Try
/codex:adversarial-reviewif the official Codex plugin is installed,/llm-tools:codex reviewfor the CLI fallback, or/ollama(keeps code local) for another perspective.
For architectural decisions:
This is a significant architectural choice. Different models sometimes weigh trade-offs differently. Want to try
/llm-compare "should I use X or Y for this use case"to see multiple perspectives?
For complex algorithms:
This algorithm has some complexity. A second set of eyes might catch edge cases. Try
/codex:rescue explain the edge cases in this algorithmif the official Codex plugin is installed, or/llm-tools:codex explain the edge cases in this algorithmfor the CLI fallback.
Do not suggest second opinions when:
Always mention /ollama as an option when the code might be sensitive:
For proprietary code,
/ollamakeeps everything local - your code never leaves your machine.
When suggesting, be specific about which command fits best:
| Situation | Best Command |
|---|---|
| Code review | /codex:review when installed; otherwise /llm-tools:codex review |
| Challenge review | /codex:adversarial-review when installed; otherwise /llm-tools:codex review --ask |
| Code written by Codex | /llm-tools:review-loop --llm fable (cross-model: Claude reviews Codex's work) |
| Quick question | /gemini <question> |
| Sensitive/private code | /ollama <question> |
| Want multiple views | /llm-compare <question> |
| Complex reasoning task | /codex:rescue when installed; otherwise /llm-tools:codex or /ollama with larger models |
npx claudepluginhub gopherguides/gopher-ai --plugin llm-toolsConsults external LLMs (OpenAI Codex, Google Gemini) via CLIs for second opinions on architecture, design decisions, model selection, and approach comparisons.
Queries AI models via OpenRouter, Gemini, or OpenAI APIs for second opinions on code, architecture, strategy, or prompting. Supports consensus, single opinion, and devil's advocate modes.
Consults external LLMs (GPT, Gemini, Claude) via the `llm` CLI for second opinions on bugs, architecture decisions, and complex problems. Activates when stuck 15+ min or user requests cross-model advice.