Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/raine/skills --skill consult명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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: