Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub kentanakae/claude-code-plugins --plugin coreHow this skill is triggered — by the user, by Claude, or both
Slash command
/core:clasp-geminiThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Gemini CLI を使って、別のAIエージェントの視点を得る。
Invokes OpenAI Codex and Google Gemini CLIs via Bash for second opinions, code reviews, and alternative analysis. Useful when users request external AI verification or explicitly say 'ask codex' or 'ask gemini'.
Runs Google Gemini CLI as a subagent to get a second opinion on code reviews, tradeoffs, and questions. Useful when you want a different AI model's perspective.
Share bugs, ideas, or general feedback.
Gemini CLI を使って、別のAIエージェントの視点を得る。
gemini コマンドが利用可能か確認する。
which gemini
コマンドが見つからない場合は、ユーザーにインストールを促して終了する。
Gemini CLI がインストールされていません。以下を参考にインストールしてください: https://github.com/google-gemini/gemini-cli
$ARGUMENTS を解析して実行モードを決定:
| 引数パターン | モード |
|---|---|
review <prompt> | 読み取り専用でレビュー |
exec <prompt> | タスク実行 |
| 引数なし | ユーザーに確認 |
gemini -s -p "<prompt>"
-s (sandbox) でサンドボックスモードを有効にし、安全にレビューする。
gemini -p "<prompt>"
自動承認が必要な場合:
gemini -y -p "<prompt>"
実行結果をユーザーに報告する。
| オプション | 説明 |
|---|---|
-m, --model <MODEL> | 使用するモデルを指定 |
-p, --prompt <PROMPT> | 非インタラクティブにプロンプトを実行 |
-s, --sandbox | サンドボックスモードで実行 |
-y, --yolo | 全てのアクションを自動承認 |
# レビューを依頼
gemini -s -p "このコードをレビューして"
# タスクを実行
gemini -p "このコードのパフォーマンスを改善して"
# 自動承認モードで実行
gemini -y -p "テストを追加して"