ソース情報
- リポジトリ
- 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 reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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.
SOC 職業分類に基づく
SKILL.md を表示中
| name | review |
| description | Review pending changes with external LLMs (Gemini, Codex, Claude, or all). |
| allowed-tools | Bash, Glob, Grep, Read, Task, mcp__consult-llm__consult_llm |
| disable-model-invocation | true |
Review pending changes with external LLMs.
Arguments: $ARGUMENTS
Check arguments for reviewer flags (mutually exclusive):
--gemini → review with Gemini only--codex → review with Codex only--claude → review with a Claude subagentStrip flags from arguments. Remaining text is optional scope/focus for the review.
git diff to get unstaged changes and git diff --cached for staged changesgit log main..HEAD for committed changes on the branchBased on the flag, consult the reviewer(s):
--gemini: Gemini onlyCall mcp__consult-llm__consult_llm with:
model: "gemini"prompt: Review prompt belowtask_mode: "review"git_diff: {"files": [<changed files>], "base_ref": "HEAD"}files: Array of relevant source files for context--codex: Codex onlyCall mcp__consult-llm__consult_llm with:
model: "openai"prompt: Review prompt belowtask_mode: "review"git_diff: {"files": [<changed files>], "base_ref": "HEAD"}files: Array of relevant source files for context--claude: Claude subagentUse the Task tool with subagent_type: "general-purpose" and a prompt like:
Review the pending changes in this repository.
Run `git diff` and `git diff --cached` to see the changes, then read relevant files for context.
Consider:
- Any obvious bugs or edge cases missed?
- Code quality issues (error handling, naming, structure)?
- Deviations from best practices or existing patterns?
- Security concerns?
Provide specific, actionable feedback. Be concise.
Spawn 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 review prompt, git_diff details, 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 review prompt, task_mode: "review", git_diff: {"files": [<changed files>], "base_ref": "HEAD"}, files: [array of relevant source files]Codex subagent — prompt must include:
mcp__consult-llm__consult_llm with model: "openai", prompt: the review prompt, task_mode: "review", git_diff: {"files": [<changed files>], "base_ref": "HEAD"}, files: [array of relevant source files]Review prompt:
Review these changes. Consider:
- Any obvious bugs or edge cases missed?
- Code quality issues (error handling, naming, structure)?
- Deviations from best practices or existing patterns?
- Security concerns?
- Anything that could break existing functionality?
Provide specific, actionable feedback. Be concise. Only flag issues worth fixing.
If the user provided scope/focus text, append it to the review prompt.
Present the feedback to the user: