How 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エージェントの視点を得る。
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 "テストを追加して"
npx claudepluginhub kentanakae/claude-code-plugins --plugin coreInvokes 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's Gemini CLI for code generation, review, analysis, web research via Google Search, and codebase architecture investigation. Use for second AI opinions, real-time web data, or parallel code tasks.
Invokes Google Gemini CLI for complex reasoning, research, and AI tasks in headless mode. Supports preview models, fallbacks, and session continuation.