← Back to Skills Marketplace
germey

Seedream Image

by Germey · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
115
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install acedatacloud-seedream-image
Description
Generate and edit AI images with Seedream (ByteDance) via AceDataCloud API. Use when creating images from text prompts, editing existing images with inpainti...
README (SKILL.md)

Seedream Image Generation

Generate and edit AI images through AceDataCloud's Seedream (ByteDance) API.

Authentication

export ACEDATACLOUD_API_TOKEN="your-token-here"

Quick Start

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

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.

POST /seedream/images/edit
{
  "prompt": "replace with a golden sunset sky",
  "image_url": "https://example.com/photo.jpg",
  "mask_url": "https://example.com/mask.png",
  "model": "seedream-3.0"
}

Parameters

Generation

Parameter Values Description
model "seedream-2.0", "seedream-2.1", "seedream-3.0", "seedream-3.0-turbo" Model to use
width 512 – 2048 Image width in pixels
height 512 – 2048 Image height in pixels
seed integer Seed for reproducible results

Editing

Parameter Required Description
image_url Yes URL of the source image to edit
mask_url Yes URL of the binary mask (white = edit region)
prompt Yes Describe what to place in the masked area

MCP Server

pip install mcp-seedream

Or hosted: https://seedream.mcp.acedata.cloud/mcp

Key tools: seedream_generate_image, seedream_edit_image

Gotchas

  • Maximum resolution is 2048×2048 — exceed this and requests fail
  • Mask images must be binary (black/white) with the same dimensions as the source image
  • seedream-3.0-turbo offers a good speed/quality trade-off for iterative workflows
  • Results return a direct image URL — no task polling needed for generation
  • Editing always requires both image_url and mask_url
Usage Guidance
Before installing or using this skill: 1) Note the SKILL.md requires ACEDATACLOUD_API_TOKEN but the package metadata does not declare it — treat that as an inconsistency and only provide a token you control and that is scoped/minimal. 2) The skill targets https://api.acedata.cloud and mentions an optional pip package (mcp-seedream). If you plan to 'pip install' that package, verify its origin (PyPI publisher, source repo, checksum) before installing. 3) The skill has no homepage and the owner ID is opaque; prefer skills with verifiable vendor information if you need to send sensitive images (PII). 4) Confirm AceDataCloud's billing, privacy, and data-retention policies — images you send may be stored or used according to their terms. 5) Ask the publisher to update registry metadata to list ACEDATACLOUD_API_TOKEN as a required credential and to provide a homepage/source repo; that fixes the main incoherence. If you need help vetting the 'mcp-seedream' package or the API domain, provide the package URL or token policy and I can help review further.
Capability Analysis
Type: OpenClaw Skill Name: acedatacloud-seedream-image Version: 1.0.0 The skill bundle contains metadata and documentation for interacting with the Seedream (ByteDance) image generation API via AceDataCloud. It provides standard API usage examples, model specifications, and mentions a related MCP server package ('mcp-seedream'). No executable code or malicious instructions were found within the files (SKILL.md, _meta.json).
Capability Assessment
Purpose & Capability
The SKILL.md describes a Seedream (AceDataCloud) image-generation/editing client and the calls shown (curl to api.acedata.cloud) match that purpose. However, the registry metadata lists no required environment variables while the SKILL.md explicitly says the skill 'Requires ACEDATACLOUD_API_TOKEN' — metadata/manifest inconsistency.
Instruction Scope
Instructions are scoped to calling AceDataCloud endpoints and to providing an API token. They do not instruct the agent to read unrelated files, system credentials, or to exfiltrate local data. The only extra action is an optional pip install recommendation for 'mcp-seedream'.
Install Mechanism
This is an instruction-only skill (no install spec). It suggests 'pip install mcp-seedream' or using a hosted MCP URL; installing that package would install third-party code on the system — vet the package source before installing. No automatic downloads or extract steps are specified by the skill itself.
Credentials
The SKILL.md requires ACEDATACLOUD_API_TOKEN (expected for an API client) but the registry metadata lists no required env vars or primary credential. This mismatch is a red flag: the runtime needs a secret that the metadata does not declare. Ensure you only provide a token scoped to AceDataCloud and understand its permissions and data retention policy.
Persistence & Privilege
The skill does not request persistent 'always' inclusion, does not declare config paths, and does not attempt to modify other skills or agent-wide settings in the provided instructions.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install acedatacloud-seedream-image
  3. After installation, invoke the skill by name or use /acedatacloud-seedream-image
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of the Seedream Image skill. - Enables AI image generation and editing (inpainting/outpainting) via Seedream models (2.0, 2.1, 3.0, 3.0-turbo) using the AceDataCloud API. - Supports ultra-high-resolution outputs up to 2048×2048 pixels. - Requires ACEDATACLOUD_API_TOKEN for authentication. - Provides example API usage, parameter documentation, and model capabilities. - Optionally integrates with mcp-seedream tools for enhanced workflows.
Metadata
Slug acedatacloud-seedream-image
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Seedream Image?

Generate and edit AI images with Seedream (ByteDance) via AceDataCloud API. Use when creating images from text prompts, editing existing images with inpainti... It is an AI Agent Skill for Claude Code / OpenClaw, with 115 downloads so far.

How do I install Seedream Image?

Run "/install acedatacloud-seedream-image" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Seedream Image free?

Yes, Seedream Image is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Seedream Image support?

Seedream Image is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Seedream Image?

It is built and maintained by Germey (@germey); the current version is v1.0.0.

💬 Comments