← ClaudeAtlas

photo-studio-skilllisted

Generate professional AI-enhanced photos using ByteDance Seedream 4.5 model. Use when users want to, (1) Create portraits with various styles, (2) Generate couple or family group photos, (3) Take photos with movie characters, (4) Edit images (change clothing, background, material, style), (5) Merge multiple photos (outfit fusion, person-scenery fusion, brand design), (6) Create series of related images (seasons, character states, story sequences), (7) Design posters (movie, event, product), or (8) Use custom prompts with full creative control.
songjiayang/photo-studio-skill · ★ 14 · AI & Automation · score 67
Install: claude install-skill songjiayang/photo-studio-skill
# Photo Studio Generate professional AI-enhanced portraits and group photos using Seedream 4.5 AI model. ## Quick Start ```bash # Interactive mode - easiest way to start python scripts/main.py generate --photo path/to/your/photo.jpg # Non-interactive mode - for agent integration python scripts/main.py generate --photo "$USER_PHOTO" --scenario portrait --non-interactive ``` ## Core Workflow 1. **Select scenario** from 9 options: celebrity, portrait, couple, family, edit, fusion, series, poster, free 2. **Provide inputs**: photos, styles, templates, prompts based on scenario 3. **Generate images**: CLI preprocesses photos, calls Seedream 4.5 API, saves results to `output/images/` 4. **Review and save**: View, reorder, regenerate, or confirm images ## Essential Commands ### Generate Images ```bash # Celebrity photos with characters python scripts/main.py generate --photo "$USER_PHOTO" --scenario celebrity --non-interactive # Portrait photos with style python scripts/main.py generate --photo "$USER_PHOTO" --scenario portrait --style "职业商务照" --non-interactive # Couple photos with pose and background python scripts/main.py generate --photos "$PHOTO1,$PHOTO2" --scenario couple --pose "手牵手面向镜头" --background "海滩日落" --non-interactive # Family photos with template python scripts/main.py generate --photos "$PHOTO1,$PHOTO2,$PHOTO3" --scenario family --template "温馨家庭聚会" --non-interactive # Edit images (change clothing, material, background, style, enhance) python scripts/main.