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.From its SKILL.md
npx -y skills add NickCrew/Claude-Cortex --skill multi-llm-consultAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
2.1 KB, 417 tokens by cl100k_base, as published. Nobody here has run it
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.jsonunderllm_providers.
Workflow
- Identify the purpose (
second-opinion,plan,review,delegate). - Summarize the task and sanitize sensitive data before sending it out.
- Run the consult script with the chosen provider.
- Compare responses and reconcile with your own plan before acting.
Consult Script
Always run --help first:
python skills/multi-llm-consult/scripts/consult_llm.py --help
Example: second opinion
python skills/multi-llm-consult/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
python skills/multi-llm-consult/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)
python skills/multi-llm-consult/scripts/consult_llm.py \
--provider codex \
--purpose plan \
--prompt "Draft a 5-step plan for implementing feature Y."
Output Handling
- Treat responses as advisory; verify against repo constraints and current state.
- Summarize the external response in 3-6 bullets before acting.
- If responses conflict, call out the differences explicitly and choose a path.
References
- Provider defaults and configuration:
references/providers.md
What ships with it: 2 files
11.3 KB alongside SKILL.md, 1 of them executable
references/
- providers.md1.1 KB
scripts/
- consult_llm.pyruns10.1 KB