Agent skill · Backend & API

nanobanana

StudioJinsei用Nanobanana画像生成Skill。Google Gemini APIを使用してロゴ、コトネちゃん、サイトビジュアル等を生成します。

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nanobanana-base --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Allowed tools: -bash-read-write-glob
Path: skills/ai-ml/nanobanana-base/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

# StudioJinsei Nanobanana 画像生成 Skill ## 概要 StudioJinseiのブランドビジュアルを生成するためのNanobanana Skillです。 Google Gemini APIを直接使用して、ロゴ、コトネちゃん、サイトビジュアル等を生成します。 --- ## 📋 利用モデル | モデル名 | API名 | 特徴 | 料金目安 | |---------|-------|------|----------| | **Gemini 3 Pro Image** | gemini-3-pro-image-preview | 高品質・高解像度 | 約21-30円/枚 | | Gemini 2.5 Flash Image | gemini-2.5-flash-image | 高速・低コスト | 約6円/枚 | **推奨:** StudioJinseiのロゴやメインビジュアルは **Gemini 3 Pro Image** を使用 --- ## 🔧 前提条件 ### 必須 - Google API Key(`GOOGLE_API_KEY`) - Python 3.x - google-generativeai パッケージ ### 環境変数 ```bash export GOOGLE_API_KEY="${GOOGLE_API_KEY}" ``` --- ## ⚙️ セットアップ手順 ### 1. 環境変数を設定 #### macOS/Linux(zsh)の場合 ```bash # ~/.zshrc を編集 nano ~/.zshrc # 以下を追加 export GOOGLE_API_KEY="${GOOGLE_API_KEY}" # 設定を反映 source ~/.zshrc # 確認 echo $GOOGLE_API_KEY ``` ### 2. Python パッケージをインストール ```bash pip install google-generativeai ``` --- ## 🚀 基本的な使い方 ### 画像生成スクリプト(簡易版) ```python import google.generativeai as genai import os from pathlib import Path # API設定 genai.configure(api_key=os.environ["GOOGLE_API_KEY"]) # モデル選択 model = genai.GenerativeModel("gemini-3-pro-image-preview") # または "gemini-2.5-flash-image" # プロンプト prompt = """ [ここにプロンプトを記述] """ # 画像生成 respon

What's inside
Steps it walks through
  1. 概要
  2. 📋 利用モデル
  3. 🔧 前提条件
  4. 必須
  5. 環境変数
  6. ⚙️ セットアップ手順
  7. 1. 環境変数を設定
  8. 2. Python パッケージをインストール
  9. 🚀 基本的な使い方
  10. 画像生成スクリプト(簡易版)
  11. 📝 プロンプトの作り方
  12. 基本テンプレート
  13. 🎯 生成パターン
  14. パターン1:ロゴ生成
Ships with 1 file
  • metadata.json
Commands it runs
export GOOGLE_API_KEY="${GOOGLE_API_KEY}"
nano ~/.zshrc
source ~/.zshrc
echo $GOOGLE_API_KEY
pip install google-generativeai
mkdir -p .claude/skills/kotone-business/images
cp manuals/nanobanana/nanobanana-base/images/reference/* .claude/skills/kotone-business/images/
mkdir -p logo-generation
cd logo-generation
cp -r ../nanobanana-base .
More from claude-skill-registry
All skills →
About this skill
What does the nanobanana skill do?

StudioJinsei用Nanobanana画像生成Skill。Google Gemini APIを使用してロゴ、コトネちゃん、サイトビジュアル等を生成します。

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill nanobanana-base --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