用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/raine/consult-llm --skill consult命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
How to invoke the consult-llm CLI. Canonical reference for the invocation contract, flags, stdin/stdout format, and multi-turn. Load this before calling consult-llm from any workflow skill (/consult, /collab, /debate, /collab-vs, /debate-vs).
Explicit workflow for one bounded implementation using source-grounded discovery, a walking slice, evidence-gated review, validation, and commit. Use only when the user invokes `/implement` or another skill explicitly delegates to it. Do not trigger for ordinary coding requests, follow-up edits, fixes with an established design, or requests to amend an existing commit.
Coordinator workflow for multi-phase implementation across workmux worktrees. Generates or loads a master plan, dispatches phase agents using presets, verifies sentinels, merges serially, and performs integration verification.
基于 SOC 职业分类
正在显示 SKILL.md
| name | consult |
| description | Consult an external LLM with the user's query. |
| allowed-tools | Bash, Glob, Grep, Read |
Consult an external LLM with the user's query via the consult-llm CLI.
Load the consult-llm skill before invoking — it defines the invocation contract (stdin heredoc, flags, output format, multi-turn). Do not call the CLI without loading it first.
Selectors resolvable in this environment (depends on configured API keys):
!`consult-llm models`
Arguments: $ARGUMENTS
Check $ARGUMENTS for flags:
Model flags: any --<selector> from the Models block above selects that model (e.g. --gemini, --openai, --deepseek, --minimax). Repeat for multiple models — they run in parallel.
Translate model flags according to the loaded consult-llm skill's model-selection rules.
Mode flags:
--browser → use web mode (--web, copies prompt to clipboard)--background → run the Bash call in background mode (run_in_background)Strip all flags from the arguments to get the user query.
consult-llm skillLoad it now. Follow its invocation contract for all CLI calls in this workflow.
One or more --<selector> flags — single call with one -m <selector> per flag, plus -f <path> for each relevant file. Multiple selectors run in parallel and the CLI returns a combined response with per-model sections.
No model flag (default) — use the loaded consult-llm skill's default model-selection rules, plus -f <path> for each relevant file.
--browser — single call with --web (model flags are ignored in web mode).
Before using the response, apply the loaded consult-llm skill's context request loop. If an answer ends with a context request, resume that model independently with the requested evidence and treat its revised answer as the consultation result.