소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 일본어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill nanobanana명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | nanobanana |
| description | StudioJinsei用Nanobanana画像生成Skill。Google Gemini APIを使用してロゴ、コトネちゃん、サイトビジュアル等を生成します。 |
| allowed-tools | ["bash","read","write","glob"] |
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)export GOOGLE_API_KEY="${GOOGLE_API_KEY}"
# ~/.zshrc を編集
nano ~/.zshrc
# 以下を追加
export GOOGLE_API_KEY="${GOOGLE_API_KEY}"
# 設定を反映
source ~/.zshrc
# 確認
echo $GOOGLE_API_KEY
pip install google-generativeai
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 = """
[ここにプロンプトを記述]
"""
# 画像生成
response = model.generate_content(prompt)
# 保存
output_path = Path("images/studiojinsei/output.png")
output_path.parent.mkdir(parents=True, exist_ok=True)
if response.candidates and response.candidates[0].content.parts:
image_data = response.candidates[0].content.parts[0].inline_data.data
output_path.write_bytes(image_data)
print(f"画像を保存しました: {output_path}")
すべてのプロンプトに以下を含める:
[StudioJinsei Brand Foundation]
Concept: "Making invisible thoughts visible and tangible"
Tagline: "考えが動きに変わるきっかけをつくるスタジオ"
Visual direction:
- Simple yet warm (not cold)
- Organized yet approachable (not rigid)
- Sophisticated yet friendly (not intimidating)
- Professional yet personal (not distant)
Color palette: Soft mint green (#A8D5BA), dark teal (#1D4E4A), pale mint (#E8F5EE), white (#FFFFFF).
Main: soft mint green (#A8D5BA), accent: dark teal (#1D4E4A).
Typography: Modern sans-serif, Poppins or similar clean font style.
Design style:
- Minimalist, Apple-inspired clean aesthetic
- Plenty of white space, generous breathing room
- Simple, uncluttered, focused layout
- High quality, attention to detail
Avoid:
- Flashy, overly colorful, hyper-energetic styles
- Spiritual, abstract, mystical vibes
- Cold, corporate, distant aesthetics
- Cheap, low-quality appearance
---
[ここに具体的な指示]
プロンプト例:
[StudioJinsei Brand Foundation]
...
Professional wordmark logo for "StudioJinsei".
Text-only design, no symbols or icons.
Typography: Modern sans-serif, Poppins or similar clean font.
"Studio" in light/thin weight, "Jinsei" in medium/semibold weight.
Color scheme: Dark teal (#1D4E4A) for main text, soft mint green (#A8D5BA) subtle accent.
Minimalist, sophisticated, professional yet approachable.
Clean letterforms with generous letter spacing.
Plenty of white space around the text.
High quality vector style.
プロンプト例:
[StudioJinsei Brand Foundation]
...
A soft, hand-drawn style illustration of Kotone-chan.
Young Japanese woman with dark long hair.
Mint green bucket hat with subtle leaf pattern.
White elegant clothing.
Gentle, warm illustration style with soft lines.
Muted, sophisticated color palette (soft mint #A8D5BA, dark teal #1D4E4A).
Calm, professional, trustworthy expression with a gentle smile.
Minimal background, plenty of white space.
Apple-inspired clean aesthetic.
She embodies "making invisible thoughts visible" concept.
プロンプト例:
[StudioJinsei Brand Foundation]
...
Website hero section design for StudioJinsei.
Main headline: "考えが動きに変わるきっかけをつくるスタジオ"
Subheadline: "見えない思いを、見える形に"
Background: Soft mint green gradient (#E8F5EE to #FFFFFF).
Minimalist hand-drawn style illustration of Kotone-chan (optional).
Plenty of breathing room, clean and uncluttered.
Professional yet friendly, modern and sophisticated.
Gemini APIでは解像度を直接指定できませんが、プロンプトで要求できます:
Generate a 1024x1024 square image.
High resolution, suitable for professional use.
または
Generate a 1920x1080 (16:9) landscape image.
| 解像度相当 | 1枚あたりの料金 |
|---|---|
| 1K (1024x1024) | 約21円 |
| 2K (2048x2048) | 約42円 |
| 4K (4096x4096) | 約85円 |
ロゴ制作:
生成時に必ず確認:
このディレクトリ(nanobanana-base)には参照画像が含まれています:
nanobanana-base/
└── images/
└── reference/
├── line-profile.jpg # LINEプロフィール画像
└── officialprofile.PNG # 公式プロフィール画像
新しいリポジトリでClaudeスキル(.claude/skills/kotone-*)を使用する場合:
スキルディレクトリに画像をコピー
mkdir -p .claude/skills/kotone-business/images
cp manuals/nanobanana/nanobanana-base/images/reference/* .claude/skills/kotone-business/images/
SKILL.mdで参照
## 参照画像
| 用途 | パス |
|------|------|
| LINEプロフィール画像 | `images/line-profile.jpg` |
| 公式プロフィール画像 | `images/officialprofile.PNG` |
詳細は setup-guide.md の「Claudeスキルに参照画像を配置」セクションを参照してください。
ユーザーから「〇〇の画像を作りたい」という依頼があった場合、以下の手順を自動実行してください:
# 例:ロゴ制作の場合
mkdir -p logo-generation
cd logo-generation
# 現在のリポジトリからコピー(既にクローン済みの場合)
cp -r ../nanobanana-base .
# または、リポジトリをクローンして取得
git clone https://github.com/StudioJinsei/opening-preparation temp
cp -r temp/manuals/nanobanana/nanobanana-base .
rm -rf temp
# スキルディレクトリを作成
mkdir -p .claude/skills/nanobanana
# nanobanana-baseの内容をコピー(manuals内から)
cp -r nanobanana-base/* .claude/skills/nanobanana/
# または、リポジトリから直接取得
git clone https://github.com/StudioJinsei/opening-preparation temp
cp -r temp/manuals/nanobanana/nanobanana-base/* .claude/skills/nanobanana/
rm -rf temp
# SKILL.mdのnameを確認(nanobananaになっているか)
プロジェクトディレクトリ内(nanobanana-baseと同じディレクトリ)に、用途に応じた専用プロンプトファイルを作成:
# 例:ロゴ制作の場合
nano logo_prompt.txt
プロンプトファイルの構成:
nanobanana-base/brand-foundation.md の「Nanobanana用 共通プロンプト基盤」を参照logo_prompt.txt, kotone_prompt.txt)# 例:generate_logo.py
import google.generativeai as genai
import os
from pathlib import Path
genai.configure(api_key=os.environ["GOOGLE_API_KEY"])
model = genai.GenerativeModel("gemini-3-pro-image-preview")
# ベースプロンプトを読み込む(nanobanana-baseはプロジェクトディレクトリ内にコピー済み)
with open("nanobanana-base/brand-foundation.md", "r") as f:
base_content = f.read()
# 共通プロンプト基盤を抽出(実装は省略)
# 専用プロンプトを読み込む
with open("logo_prompt.txt", "r") as f:
custom_prompt = f.read()
# 結合して生成
prompt = base_prompt + "\n\n---\n\n" + custom_prompt
response = model.generate_content(prompt)
# 保存処理...
プロジェクトディレクトリの説明と使い方を記載:
# [プロジェクト名]
## 構成
- nanobanana-base/ - ベースディレクトリ
- [プロンプトファイル名] - 専用プロンプト
- [生成スクリプト名] - 生成スクリプト
## 使い方
[具体的な使い方]
nanobanana-base と同じディレクトリ(プロジェクトディレクトリ内)に保存nanobanana-base/brand-foundation.md から自動読み込み最終更新:2025/12/20