multi-llm-consult
Consult external LLMs (Gemini, OpenAI/Codex, Qwen) for second opinions, alternative plans, independent reviews, or delegated tasks. Use when a user asks for another model's perspective, wants to compare answers, or requests delegating a subtask to Gemini/Codex/Qwen.
npx skills add majiayu000/claude-skill-registry --skill multi-llm-consult --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Multi-LLM Consult ## Overview Use a bundled script to query external LLM providers with a sanitized prompt and return a concise comparison. ## Setup - Configure API keys in the TUI: open the Command Palette (Ctrl+P) and run **Configure LLM Providers**. - Keys are stored in `settings.json` under `llm_providers`. ## Workflow 1. Identify the **purpose** (`second-opinion`, `plan`, `review`, `delegate`). 2. Summarize the task and **sanitize sensitive data** before sending it out. 3. Run the consult script with the chosen provider. 4. Compare responses and reconcile with your own plan before acting. ## Consult Script Always run `--help` first: ```bash python scripts/consult_llm.py --help ``` Example: second opinion ```bash python scripts/consult_llm.py \ --provider gemini \ --purpose second-opinion \ --prompt "We plan to refactor module X. What risks or gaps do you see?" ``` Example: delegate a review ```bash python scripts/consult_llm.py \ --provider qwen \ --purpose review \ --prompt-file /tmp/review_request.md \ --context-file /tmp/patch.diff ``` Example: plan check with Codex (OpenAI) ```bash python scripts/consult_llm.py \ --provider codex \ --purpose plan \ --prompt "Draft a 5-st
- Overview
- Setup
- Workflow
- Consult Script
- Output Handling
- References
python scripts/consult_llm.py --help python scripts/consult_llm.py \
What does the multi-llm-consult skill do?
Consult external LLMs (Gemini, OpenAI/Codex, Qwen) for second opinions, alternative plans, independent reviews, or delegated tasks. Use when a user asks for another model's perspective, wants to compare answers, or requests delegating a subtask to Gemini/Codex/Qwen.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill multi-llm-consult --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
