← ClaudeAtlas

second-opinionlisted

Get external AI opinions on a problem or question. Use when you want diverse perspectives from the agent CLIs you are not running (Claude, Codex, Pi, OpenCode).
nielsmadan/skills · ★ 0 · AI & Automation · score 78
Install: claude install-skill nielsmadan/skills
<!-- Generated from https://github.com/nielsmadan/agentic-coding — edits here are overwritten. --> # Second Opinion Command Get input from three independent advisors on the current problem or question. Consult the advisor CLIs you are *not* — from `claude`, `codex`, `pi` and `opencode`, skip whichever one you are running as, and query the rest. By default, iterates if responses lack confidence. ## Usage ``` /second-opinion <question or context> /second-opinion --quick <question> # Single pass, no iteration /second-opinion --words=300 <question> # Limit response to 300 words /second-opinion --timeout=120 <question> # Set timeout to 120s /second-opinion # Uses current conversation context ``` ## Parameters | Parameter | Default | Description | |-----------|---------|-------------| | `--quick` | off | Single pass, no iteration | | `--timeout` | `300` | Timeout per advisor in seconds | | `--words` | `500` | Max words per advisor response | ## Gotchas - `.second-opinion.md` is written to the project directory and is NOT gitignored by default. If cleanup is skipped (error, timeout), it can be accidentally committed. - The advisor CLIs must be installed. If one is missing or fails, the command continues with the others and that advisor's input is simply absent from the synthesis. - **The advisors are meant to read the code** — that's the point. All advisors run in *read-only* mode so they can read/explore the repo but cannot modify it. Poi