ソース情報
- リポジトリ
- raine/skills
- ソースの最終更新活動
- 2026年4月17日 11:35
- 検出された SKILL.md の言語
- 英語
- スター
- 2
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/raine/skills --skill consultコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| 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: