seedream
Seedream harnesses Volcengine's image generation model to create, edit, and fuse images across multiple modes. It supports text-to-image creation, single and multi-image editing, image series generation, and real-time web-search-enhanced creation via the Seedream 5.0 lite model. The skill runs on Node.js with no Python dependency, offering configurable output sizes from 1K to 4K resolution.
Seedream generates high-quality AI images from text descriptions, supporting text-to-image, image editing, multi-image fusion, and web-search-based creation.
AI-generated summary based on this skill's SKILL.md
Install
netease-youdao/LobsterAI/seedream · repository language: TypeScript
git clone https://github.com/netease-youdao/LobsterAI
cp -r LobsterAI/SKILLs/seedream ~/.claude/skills/seedreamnpx skillfed install netease-youdao/LobsterAI/seedreamFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How does seedream generate AI images from text?
Seedream generates high-quality images from text descriptions using Volcengine's image generation model. You provide a text prompt describing what you want to create, and seedream synthesizes the image based on your description. The skill supports configurable output resolutions ranging from 1K to 4K, allowing you to choose the detail level that fits your project needs.
Can seedream edit images with AI?
Yes, seedream offers AI-powered image editing and transformation capabilities. Beyond text-to-image generation, you can modify existing images using seedream's editing modes. The skill supports both single-image editing for targeted adjustments and multi-image editing workflows, giving you flexibility in how you refine and transform your visual content.
What does it mean to merge multiple images together with seedream?
Seedream can merge multiple reference images to create composite results through its image fusion capabilities. This allows you to combine elements from different photos or designs into a single cohesive image. The multi-image fusion feature is useful for design projects where you want to blend visual elements or create composite artwork from several source images.
Does seedream support batch image generation?
Seedream supports generating image series for design and storytelling projects. This capability lets you create multiple related images in sequence, which is valuable for developing visual narratives, design variations, or content series. The batch generation feature streamlines workflows when you need several connected images rather than isolated individual creations.
What are seedream's technical requirements?
Seedream runs on Node.js with no Python dependency, making it lightweight and easy to deploy. It integrates Volcengine's image generation model and the Seedream 5.0 lite model for enhanced capabilities. The skill offers configurable output sizes from 1K to 4K resolution and operates under an MIT license, providing flexibility for both personal and commercial use.
Can seedream create images from description with web search integration?
Seedream can generate images with real-time web search information integration through its Seedream 5.0 lite model. This feature allows you to create images that incorporate current information from the web, enabling more contextually relevant and up-to-date image generation for projects that require real-world data or trending information.
SKILL.md
rendered from the published skill — quoted content, verbatim
Seedream 图片生成
使用火山引擎 Seedream 模型生成高质量 AI 图片,支持文本生成图片(T2I)、图片编辑(I2I)、多图融合、组图生成、联网搜索等多种创作模式。
> ✨ Node.js 版本:此脚本使用 Node.js 实现,无需 Python 环境。通过入口脚本自动检测 Node.js 运行时(优先使用系统 node,回退到 LobsterAI 内置运行时),Windows 和 Mac 用户都可以开箱即用。
配置
- Base URL:
https://ark.cn-beijing.volces.com/api/v3 - API Key: 从环境变量
ARK_API_KEY读取 - 认证方式:
Authorization: Bearer {API_KEY} - SDK: 兼容火山方舟 Python SDK
快速开始
第一步:设置 API Key
# macOS / Linux - 当前终端临时生效(立即使用)
export ARK_API_KEY="你的API密钥"
# Windows PowerShell - 当前会话临时生效
$env:ARK_API_KEY="你的API密钥"
# 验证设置成功(macOS/Linux)
echo $ARK_API_KEY
# 验证设置成功(Windows)
echo $env:ARK_API_KEY
第二步:生成你的第一张图片
bash "$SKILLS_ROOT/seedream/scripts/generate-image.sh" \
--prompt "一只可爱的橘色小猫"
如何配置 API Key
方式一:通过环境变量配置(推荐)
在终端中设置环境变量:
```bash
macOS/Linux
export ARK_API_KEY="你的API密钥"
或者添加到 ~/.zshrc 或 ~/.bashrc
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 4 files
SKILLs/seedream/SKILL.md
SKILLs/seedream/scripts/generate-image.ps1
SKILLs/seedream/scripts/generate-image.sh
SKILLs/seedream/scripts/generate_image.js