Home · Skills · Agent Skill

Second Opinion

Second Opinion from Codex and Gemini CLI for Claude Code

No install, no account.

Paste into Claude, ChatGPT or Cursor.

Read the source27 lines
second-opinion/SKILL.md27 lines0.7 KBRawView on GitHub
1---
2name: second-opinion
3description: Second Opinion from Codex and Gemini CLI for Claude Code
4---
5 
6# Second Opinion
7 
8When invoked:
9 
101. **Summarize the problem** from conversation context (~100 words)
11 
122. **Spawn both subagents in parallel** using Task tool:
13 - `gemini-consultant` with the problem summary
14 - `codex-consultant` with the problem summary
15 
163. **Present combined results** showing:
17 - Gemini's perspective
18 - Codex's perspective
19 - Where they agree/differ
20 - Recommended approach
21 
22## CLI Commands Used by Subagents
23 
24```bash
25gemini -p "I'm working on a coding problem... [problem]"
26codex exec "I'm working on a coding problem... [problem]"
27```

Alternatives

Also in Agent Skill