npx skills add smithery/NickCrew --skill multi-llm-consult
nickcrew/claude-cortex
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.
Installation
npx skills add nickcrew/claude-cortex --skill multi-llm-consult
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Power BI report visualization design prompt for creating effective, user-friendly, and accessib…
9.3K installs법인등기소/인터넷등기소 상?
3.2K installsUse this skill when the user requests to generate, create, or write professional research repor…
2.6K installsBuild a complete design system from scratch with creative risks and realistic product mockups. …
2.4K installsMcKinsey顾问式问题解决系统。从商业问题出发,通过假设驱动的结构化分析方法,生成McKinsey风格研究报…
1.3K installsMcKinsey顾问式问题解决系统。从商业问题出发,通过假设驱动的结构化分析方法,生成McKinsey风格研究报…
1.1K installsAlso in this package
Other skills from nickcrew/claude-cortex · top by installs.
npx skills add nickcrew/claude-cortex
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,168 B -
docs
SUMMARY.md291 B
History
- First seen on skills.sh
- First recorded snapshot · 71 installs
SKILL.md
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