원클릭으로
consult
Consult an external LLM with the user's query.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Consult an external LLM with the user's query.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Explicit preset-driven implementation workflow. Use only when the user invokes `/implement` or another skill explicitly delegates to it. Do not trigger for ordinary coding requests, straightforward 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.
Multiple LLMs collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
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).
LLMs propose and critique approaches, agent moderates the debate and synthesizes the best solution, then implements.
Standalone multi-model code review of an existing diff. Multiple LLMs review in parallel; agent deduplicates, prioritizes by severity/confidence, and optionally applies localized fixes.
| 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).