gemini
Gemini CLI を使用してテキストと画像を生成する際にこのスキルを使用します。ユーザーが Gemini を通じてコンテンツ生成、画像生成、コードレビュー等を要求した際にトリガーされます。
npx skills add majiayu000/claude-skill-registry --skill gemini-buddypia-kaiju-voice --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Gemini CLI GoogleのGemini AIモデルをターミナルから直接使用できるCLIツールです。テキスト生成、画像生成、コード分析等、様々なAI作業を実行できます。 ## 前提要件 Gemini CLIがインストールされている必要があります。インストールされていない場合: ```bash # npm グローバルインストール (推奨) npm install -g @google/gemini-cli # または Homebrew (macOS/Linux) brew install gemini-cli # または npx で即時実行 npx https://github.com/google-gemini/gemini-cli ``` ## テキスト生成 ### 対話モード ```bash # 基本実行 gemini # 特定モデル使用 gemini -m gemini-3-flash-preview ``` ### 非対話モード (スクリプト用) ```bash # 単一プロンプト実行 gemini -p "AIゲーム対戦プロジェクトの紹介文を作成して" # ファイル内容を含めて分析 gemini -p "このコードをレビューして" < code.ts # 結果をファイルに保存 gemini -p "README 草案を作成して" > README.md ``` ### コンテキスト含有 ```bash # 特定ディレクトリを含む gemini --include-directories ./lib,./docs # プロジェクト全体コンテキスト gemini --include-directories . ``` ## 画像生成 Gemini CLIでの画像生成はImagen MCPサーバーを通じて可能です。 ### MCPサーバー設定 `~/.gemini/settings.json` ファイルに以下を追加: ```json { "mcpServers": { "imagen": { "command": "npx", "args": ["-y", "@anthropic-ai/mcp-server-imagen"] } } } ``` ### 画像生成コマンド ```bash # 対話モードで画像生成 gemini > かわいい猫キャラクターアイコンを生成して # 非対話モード gemini -p "ミニマルスタイルのAIゲーム対戦アプリロゴを生成して" ``` ### Gemini 2.5 Flash Image モデル (ネイティブ画像生成) ```bash # 画像生成専用モデル使用 gemini -m gemini-3-flash-preview-image -p "韓国の伝統文様が入ったバナー画像" ``` ## 実行例
- 前提要件
- テキスト生成
- 対話モード
- 非対話モード (スクリプト用)
- コンテキスト含有
- 画像生成
- MCPサーバー設定
- 画像生成コマンド
- Gemini 2.5 Flash Image モデル (ネイティブ画像生成)
- 実行例
- マーケティング文生成
- コードレビュー
- ドキュメント草案作成
- 便利なオプション
npm グローバルインストール (推奨) npm install -g @google/gemini-cli brew install gemini-cli npx https://github.com/google-gemini/gemini-cli gemini gemini -m gemini-3-flash-preview gemini -p "AIゲーム対戦プロジェクトの紹介文を作成して" gemini -p "このコードをレビューして" < code.ts gemini -p "README 草案を作成して" > README.md gemini --include-directories ./lib,./docs
What does the gemini skill do?
Gemini CLI を使用してテキストと画像を生成する際にこのスキルを使用します。ユーザーが Gemini を通じてコンテンツ生成、画像生成、コードレビュー等を要求した際にトリガーされます。
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill gemini-buddypia-kaiju-voice --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
