
from photo-studio-skill12
Generate professional AI-enhanced portraits, couple/family photos and posters using Seedream 4.5 with scenario-driven workflows and templates.
An end-to-end CLI skill for creating and editing high-quality AI-enhanced photos using the Seedream 4.5 model. It provides scenario-driven workflows (portrait, celebrity, couple, family, fusion, series, poster, edit, free) to preprocess reference photos, call the image model, and manage outputs. The skill includes command examples for interactive and non-interactive runs, configuration hints, and troubleshooting notes.
Use this skill when an agent or developer needs to: generate portrait or group photos from user images, apply style templates, merge multiple references, produce themed image series, or design posters programmatically. It's suitable for automated pipelines (non-interactive mode) and manual CLI use.
Best fit for agents or runners that can invoke CLI tools and shell scripts (agent-native CLIs, Claude Code / Copilot-like automation). It can be integrated into pipelines that can set env vars or run the provided scripts.
Photo Studio generates AI-enhanced portraits and group photos using ByteDance's Seedream 4.5 API. It offers 9 scenarios (celebrity, portrait, couple, family, edit, fusion, series, poster, free) with a well-structured CLI. 3 of 6 scripts ran successfully; image_generator.py and main.py failed due to missing cv2 dependency. Config and interaction modules loaded cleanly. No security concerns beyond the inherent privacy consideration of sending user photos to a third-party API.
cv2 (opencv-python)numpyWell-structured skill with clean code. The cv2 import failure is expected since opencv isn't pre-installed but is listed in requirements.txt. No hardcoded secrets — API key properly read from environment. Network calls only go to the documented ByteDance API endpoint.