Agent skill · Backend & API

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0
Declared author: acedatacloud
Requires: Requires ACEDATACLOUD_API_TOKEN environment variable. Optionally pair with mcp-seedream for tool-use.
Path: skills/ai-ml/seedream-image-acedatacloud-skills-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Authentication
  2. Quick Start
  3. Models
  4. Workflows
  5. 1. Text-to-Image
  6. 2. Image Editing (Inpainting / Outpainting)
  7. Parameters
  8. Generation
  9. Editing
  10. MCP Server
  11. Gotchas
Ships with 1 file
  • metadata.json
Commands it runs
export ACEDATACLOUD_API_TOKEN="your-token-here"
curl -X POST https://api.acedata.cloud/seedream/images \
pip install mcp-seedream
More from claude-skill-registry
All skills →
About this skill
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.

Keep going