Agent skill
consult-llm
Use it when the user asks to "ask gemini", "ask codex", or "ask in browser"
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/consult-llm
SKILL.md
When consulting with external LLMs:
1. Gather Context First:
- Use Glob/Grep to find relevant files
- Read key files to understand their relevance
- Select files directly related to the question
2. Determine Mode and Model:
- Web mode: Use if user says "ask in browser" or "consult in browser"
- Codex mode: Use if user says "ask codex" → use model "gpt-5.1-codex-max"
- Gemini mode: Default for "ask gemini" → use model "gemini-2.5-pro"
3. Call the MCP Tool: Use mcp__consult-llm__consult_llm with:
-
For API mode (Gemini):
model: "gemini-2.5-pro"prompt: Clear, neutral question without suggesting solutionsfiles: Array of relevant file paths
-
For API mode (Codex):
model: "gpt-5.1-codex-max"prompt: Clear, neutral question without suggesting solutionsfiles: Array of relevant file paths
-
For web mode:
web_mode: trueprompt: Clear, neutral question without suggesting solutionsfiles: Array of relevant file paths- (model parameter is ignored in web mode)
4. Present Results:
- API mode: Summarize key insights, recommendations, and considerations from the response
- Web mode: Inform user the prompt was copied to clipboard and ask them to paste it into their browser-based LLM and share the response back
Critical Rules:
- ALWAYS gather file context before consulting
- Ask neutral, open-ended questions to avoid bias
- Provide focused, relevant files (quality over quantity)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?