com um clique
com um clique
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).
Coordinator skill that runs a multi-phase implementation across workmux worktrees. Each phase invokes /implement in its own worktree; the coordinator handles dispatch ordering (sequential, parallel, DAG), merge sequencing, and failure isolation. Composes /implement, /merge, workmux, and consult-llm.
Autonomously plan and implement a task with external LLM review. Writes a behavioral spec, runs an evidence-gated plan review (premortem + independent alternative), applies feedback through a decision ledger, implements with a triggered debug loop, and finishes with an evidence-gated post-implementation verification review. No user interaction.
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.
Multiple LLMs collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
The agent brainstorms with a partner LLM in alternating turns, building on each other's ideas. Synthesizes the best ideas into a plan.
| 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).