Skip to content
OpenSmartRoute
Skillv1.0.0

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 compa

by nickcrew(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from nickcrew/claude-cortex (skills/multi-llm-consult/SKILL.md). Install upstream with npx skills add nickcrew/claude-cortex --skill multi-llm-consult. Copyright stays with the author.

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:

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

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/nickcrew-claude-cortex-multi-llm-consult/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

nickcrew-claude-cortex-multi-llm-consult.ocm.jsonjson
{
  "ocm": "1",
  "id": "nickcrew-claude-cortex-multi-llm-consult",
  "kind": "skill",
  "name": "multi-llm-consult",
  "description": "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.",
  "publisher": "nickcrew",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "codex",
      "gemini",
      "qwen",
      "another-llm",
      "compare-models",
      "cross-check",
      "delegate-to-model",
      "external-model",
      "second-opinion"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/nickcrew/claude-cortex",
      "path": "skills/multi-llm-consult/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/nickcrew/claude-cortex/blob/HEAD/skills/multi-llm-consult/SKILL.md",
      "key": "nickcrew/claude-cortex/skills/multi-llm-consult/SKILL.md"
    }
  },
  "instructions": "# Multi-LLM Consult\n\n## Overview\n\nUse a bundled script to query external LLM providers with a sanitized prompt and return a concise comparison.\n\n## Setup\n\n- Configure API keys in the TUI: open the Command Palette (Ctrl+P) and run **Configure LLM Providers**.\n- Keys are stored in `settings.json` under `llm_providers`.\n\n## Workflow\n\n1. Identify the **purpose** (`second-opinion`, `plan`, `review`, `delegate`).\n2. Summarize the task and **sanitize sensitive data** before sending it out.\n3. Run the consult script with the chosen provider.\n4. Compare responses and reconcile with your own plan before",
  "cost": {
    "context_tokens": 425
  }
}

Fetch it by URL: GET /api/v1/registry/nickcrew-claude-cortex-multi-llm-consult/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.