seedream-image
Generate and edit AI images with Seedream (ByteDance) via AceDataCloud API. Use when creating images from text prompts, editing existing images with inpainting/outpainting, or working with ultra-high-resolution outputs. Supports Seedream 2.0, 2.1, 3.0, and 3.0 Turbo models.
npx skills add majiayu000/claude-skill-registry --skill seedream-image-acedatacloud-skills-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Seedream Image Generation Generate and edit AI images through AceDataCloud's Seedream (ByteDance) API. ## Authentication ```bash export ACEDATACLOUD_API_TOKEN="your-token-here" ``` ## Quick Start ```bash curl -X POST https://api.acedata.cloud/seedream/images \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"prompt": "a cyberpunk cat wearing VR goggles in a neon city", "model": "seedream-3.0"}' ``` ## Models | Model | Resolution | Speed | Best For | |-------|-----------|-------|----------| | `seedream-2.0` | Standard | Fast | Quick drafts | | `seedream-2.1` | Standard | Fast | Improved quality over 2.0 | | `seedream-3.0` | Up to 2048×2048 | Standard | High-quality generation (default) | | `seedream-3.0-turbo` | Up to 2048×2048 | Faster | Speed-optimized with near-3.0 quality | ## Workflows ### 1. Text-to-Image ```json POST /seedream/images { "prompt": "a serene Japanese garden with cherry blossoms and a red bridge", "model": "seedream-3.0", "width": 1024, "height": 1024 } ``` ### 2. Image Editing (Inpainting / Outpainting) Edit regions of an existing image using a mask. ```json POST /seedream/images/edit { "prompt": "replace with a
- Authentication
- Quick Start
- Models
- Workflows
- 1. Text-to-Image
- 2. Image Editing (Inpainting / Outpainting)
- Parameters
- Generation
- Editing
- MCP Server
- Gotchas
export ACEDATACLOUD_API_TOKEN="your-token-here" curl -X POST https://api.acedata.cloud/seedream/images \ pip install mcp-seedream
What does the seedream-image skill do?
Generate and edit AI images with Seedream (ByteDance) via AceDataCloud API. Use when creating images from text prompts, editing existing images with inpainting/outpainting, or working with ultra-high-resolution outputs. Supports Seedream 2.0, 2.1, 3.0, and 3.0 Turbo models.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill seedream-image-acedatacloud-skills-2 --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.
