photo-studio-skilllisted
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.