Agent skill

gemini

Gemini CLI を使用してテキストと画像を生成する際にこのスキルを使用します。ユーザーが Gemini を通じてコンテンツ生成、画像生成、コードレビュー等を要求した際にトリガーされます。

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/gemini-buddypia-kaiju-voice/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 "韓国の伝統文様が入ったバナー画像" ``` ## 実行例

What's inside
Steps it walks through
  1. 前提要件
  2. テキスト生成
  3. 対話モード
  4. 非対話モード (スクリプト用)
  5. コンテキスト含有
  6. 画像生成
  7. MCPサーバー設定
  8. 画像生成コマンド
  9. Gemini 2.5 Flash Image モデル (ネイティブ画像生成)
  10. 実行例
  11. マーケティング文生成
  12. コードレビュー
  13. ドキュメント草案作成
  14. 便利なオプション
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going