con un clic
con un clic
Autonomously create a plan, consult Gemini and Codex for improvements, apply feedback, and implement. No user interaction - uses best judgment throughout.
Turn an idea into a concrete design through structured dialogue.
Gemini and Codex collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
Claude brainstorms with an opponent LLM (Gemini or Codex) in alternating turns, building on each other's ideas. Synthesizes the best ideas into a plan.
Commit the staged changes. If there are no staged changes, stage all changes first.
Consult Gemini and Codex for high-level planning, synthesize into a detailed plan, implement, then get final review. No user interaction.
| name | consult |
| description | Consult an external LLM with the user's query. |
| allowed-tools | Glob, Grep, Read, mcp__consult-llm__consult_llm |
Consult an external LLM with the user's query.
Arguments: $ARGUMENTS
Check the arguments for flags:
Reviewer flags (mutually exclusive):
--gemini → consult only Gemini--codex → consult only CodexMode flags:
--browser → use web mode (copy prompt to clipboard)--skip-explore → skip file exploration, consult with only the user's query and any explicitly mentioned filesStrip all flags from arguments to get the user query.
When consulting with external LLMs:
1. Gather Context First:
If --skip-explore: Skip file exploration. Only use files the user explicitly mentioned or referenced. Proceed directly to step 2.
2. Call the MCP Tool:
Based on the reviewer flag:
--gemini: Gemini onlyCall mcp__consult-llm__consult_llm with:
model: "gemini"prompt: The user's query, passed through faithfully (see Critical Rules)files: Array of relevant file paths--codex: Codex onlyCall mcp__consult-llm__consult_llm with:
model: "openai"prompt: The user's query, passed through faithfully (see Critical Rules)files: Array of relevant file pathsSpawn BOTH as parallel subagents (Agent tool, subagent_type: "general-purpose", model: "sonnet"). NEVER run subagents in the background — always run them in the foreground so you can process their results immediately. Each subagent prompt must include the full query and file list so it can make the MCP call independently.
Gemini subagent — prompt must include:
mcp__consult-llm__consult_llm with model: "gemini", prompt: the user's query (passed through faithfully), files: [array of relevant file paths]Codex subagent — prompt must include:
mcp__consult-llm__consult_llm with model: "openai", prompt: the user's query (passed through faithfully), files: [array of relevant file paths]--browser: Web modeCall mcp__consult-llm__consult_llm with:
web_mode: trueprompt: The user's query, passed through faithfully (see Critical Rules)files: Array of relevant file paths3. Present Results:
Critical Rules: