ERNIE-Image文生图SKILL
/install ernie-image
ERNIE-ImageImage Generation & Editing
Generate new images or edit existing ones using Baidu's ERNIE-Image API.
Prerequisites
-
Clawdbot installed and configured
-
Need Install python openai sdk: pip instsall openai
API Key
The script checks for API key in this order:
- 1.API key from https://aistudio.baidu.com/account/accessToken
- 2.
ERNIE-Image_API_KEYenvironment variable - 3.
--api-keyargument (use if user provided key in chat)
Usage
Run the script using absolute path (do NOT cd to skill directory first):
Generate new image:
python ~/.codex/skills/ERNIE-Image/scripts/generate_image.py --prompt "your image description" --filename "output-name.png" [--resolution 1024*1024|1366*768] [--api-key KEY]
Important: Always run from the user's current working directory so images are saved where the user is working, not in the skill directory.
Resolution Options
ERNIE-Image API supports three resolutions (uppercase K required):
- 1024x1024
- 1376x768
- 1264x848
- 1200x896
- 896x1200
- 848x1264
- 768x1376
Map user requests to API parameters:
- No mention of resolution →
1024x1024 - "low resolution", 1024x1024
If neither is available, the script exits with an error message.
Preflight + Common Failures (fast fixes)
-
Preflight:
test -n \"$ERNIE-Image_API_KEY\"(or pass--api-key)- If editing:
test -f \"path/to/input.png\"
-
Common failures:
Error: No API key provided.→ setERNIE-Image_API_KEYor pass--api-key- “quota/permission/403” style API errors → wrong key, no access, or quota exceeded; try a different key/account
Filename Generation
Generate filenames with the pattern: yyyy-mm-dd-hh-mm-ss-name.png
Format: {timestamp}-{descriptive-name}.png
- Timestamp: Current date/time in format
yyyy-mm-dd-hh-mm-ss(24-hour format) - Name: Descriptive lowercase text with hyphens
- Keep the descriptive part concise (1-5 words typically)
- Use context from user's prompt or conversation
- If unclear, use random identifier (e.g.,
x9k2,a7b3)
Examples:
- Prompt "A serene Japanese garden" →
2025-11-23-14-23-05-japanese-garden.png - Prompt "sunset over mountains" →
2025-11-23-15-30-12-sunset-mountains.png - Prompt "create an image of a robot" →
2025-11-23-16-45-33-robot.png - Unclear context →
2025-11-23-17-12-48-x9k2.png
Prompt Handling
For generation: Pass user's image description as-is to --prompt. Only rework if clearly insufficient.
Preserve user's creative intent in both cases.
Prompt Templates (high hit-rate)
Use templates when the user is vague or when edits must be precise.
- Generation template:
- “Create an image of: \x3Csubject>. Style: \x3Cstyle>. Composition: \x3Ccamera/shot>. Lighting: \x3Clighting>. Background: \x3Cbackground>. Color palette: \x3Cpalette>. Avoid: \x3Clist>.”
Output
- Saves PNG to current directory (or specified path if filename includes directory)
- Script outputs the full path to the generated image
- Do not read the image back - just inform the user of the saved path
Examples
Generate new image:
python ~/.codex/skills/ERNIE-Image/scripts/generate_image.py --prompt "A serene Japanese garden with cherry blossoms" --filename "2025-11-23-14-23-05-japanese-garden.png" --resolution 1024*1024
References
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ernie-image - 安装完成后,直接呼叫该 Skill 的名称或使用
/ernie-image触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
ERNIE-Image文生图SKILL 是什么?
Generate images with ERNIE-Image. Use for image create requests incl. edits. Supports text-to-image ; - 1024x1024/1376x768/1264x848/ 1200x896/896x1200/848x12... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 93 次。
如何安装 ERNIE-Image文生图SKILL?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ernie-image」即可一键安装,无需额外配置。
ERNIE-Image文生图SKILL 是免费的吗?
是的,ERNIE-Image文生图SKILL 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
ERNIE-Image文生图SKILL 支持哪些平台?
ERNIE-Image文生图SKILL 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 ERNIE-Image文生图SKILL?
由 livingbody(@livingbody)开发并维护,当前版本 v1.0.2。