Install
$ agentstack add skill-aiwork4me-ernie-image-skill-ernie-image-skill ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
ERNIE-Image Skill
Generate images with Baidu AI Studio's ERNIE-Image models through the OpenAI-compatible API. This skill is best when the user specifically wants Baidu/ERNIE generation, Chinese-language image prompts, or local PNG outputs from a configured AI_STUDIO_API_KEY.
Safety Boundary
- Use this skill only for explicit image-generation requests.
- Prompts and generation parameters are sent to Baidu AI Studio. Do not include
secrets, credentials, private personal data, or confidential business data in prompts.
- Follow Baidu AI Studio terms and applicable platform rules. Decline unsafe,
deceptive, exploitative, or rights-violating image requests.
- Do not print, store, or ask the user to paste
AI_STUDIO_API_KEYinto chat.
The script reads it from the environment only.
- Generated files are written locally. Confirm the output directory when the
user has not specified one.
Models
| Model | Best for | |---|---| | ERNIE-Image-Turbo | Fast drafts, iteration, batch previews | | ERNIE-Image | Slower, higher-quality final outputs |
Chinese prompts usually work especially well with these models.
Before Running
Confirm that AI_STUDIO_API_KEY is set in the shell environment. If it is missing, tell the user to create an access token at https://aistudio.baidu.com/account/accessToken and set it locally.
Prefer ERNIE-Image-Turbo, 1024x1024, n=1, and b64_json unless the user asks for different parameters.
Execution
Run from the skill directory so uv can use the bundled project metadata and lockfile:
cd "${CLAUDE_SKILL_DIR}" && uv run scripts/generate.py "" --model ERNIE-Image-Turbo --size 1024x1024
Batch generation:
cd "${CLAUDE_SKILL_DIR}" && uv run scripts/generate.py "" --n 4 --output ""
Higher-quality generation:
cd "${CLAUDE_SKILL_DIR}" && uv run scripts/generate.py "" --model ERNIE-Image --steps 16 --guidance 3.5
Reproducible generation:
cd "${CLAUDE_SKILL_DIR}" && uv run scripts/generate.py "" --seed 42
Structured output:
cd "${CLAUDE_SKILL_DIR}" && uv run scripts/generate.py "" --json
Parameters
| Parameter | Values | Default | |---|---|---| | --model | ERNIE-Image-Turbo, ERNIE-Image | ERNIE-Image-Turbo | | --size | 1024x1024, 768x1376, 1376x768, 896x1200, 1200x896, 848x1264, 1264x848 | 1024x1024 | | --n | 1-4 | 1 | | --seed | integer | random | | --steps | 4-20 | provider default | | --guidance | 1.0-7.5 | provider default | | --use-pe | flag | off | | --prefix | safe filename prefix | ernie | | --json | flag | off |
Select vertical sizes for posters, portraits, and mobile layouts; horizontal sizes for covers, wallpapers, and presentation visuals; square for general use.
Output
The script saves PNG files and prints one MEDIA: line per image for compatible clients. With --json, it prints:
{
"success": true,
"model": "ERNIE-Image-Turbo",
"prompt": "...",
"parameters": {"size": "1024x1024", "n": 1, "seed": 42},
"files": [{"path": "/abs/path/ernie_20260502_140000.png", "size_bytes": 1715660}]
}
The script avoids overwriting existing files by adding a numeric suffix when needed.
Useful Triggers
Treat the text after these explicit triggers as the prompt:
- English:
ernie image: ...,baidu image: ...,AI Studio image: ... - Chinese:
文心生图:...,百度生图:...,生成图片:...
For full API notes, prompt guidance, and troubleshooting, read references/api-guide.md.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AIwork4me
- Source: AIwork4me/ernie-image-skill
- License: MIT-0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.