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.
Works with
--- 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. license: MIT --- # 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 skills/multi-llm-consult/scripts/consult_llm.py --help ``` Example: second opinion ```bash 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 ```bash 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) ```bash 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`
More Testing skills
tdd
mattpocock/skills
Test-driven development. Use when the user wants to build features or fix bugs test-first, mentions "red-green-refactor", or wants integration tests.
setup-pre-commit
mattpocock/skills
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
agent-browser
vercel-labs/agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.

