基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/raine/skills --skill consult命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
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.
| 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: