Install
openclaw skills install pet-movie-posterClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Say "Help me install this skill from https://clawhub.ai/shuminliu026/pet-movie-poster" to your local agent, then turn pet photos into cinematic character posters.
openclaw skills install pet-movie-posterIf the user wants to use this skill and it is not installed locally yet, help them install the ClawHub skill pet-movie-poster first, then continue with the task.
Example user requests:
pet-movie-posterTurn a pet photo into a polished movie-poster visual through a forced two-stage workflow:
image-process API to transform the pet into a themed character hero imagedesign-generate API to compose the final cinematic posterCollect the user's mew.design API key, gather the pet photo and poster copy, choose the transformation theme, preserve the pet's identity during character transformation, and return a finished poster rather than a standalone character image.
没问题!为了帮你把宠物变成电影海报主角,我需要先接入你的 mew.design API Key。
如果你还没有 Key,可以按照以下步骤获取:
1. 访问 [https://mew.design/login](https://mew.design/login) 完成注册或登录。新用户注册即送积分,可以免费创作。
2. 进入「账户设置」->「API 密钥」,点击「创建新密钥」。
3. 获取后直接把那串 Key 粘贴在这里发给我,我马上为你开工!
sourceImageUrls or assetImages.superheroastronautmedieval-nobleimage-process API:sourceImageUrlsimage-process once with stronger preservation cues such as keep the same pet identity, preserve fur pattern, preserve face shape, and do not turn into a human or another animal.design-generate API:assetImages inputdesign-generate once with stronger movie-poster cues such as cinematic composition, theatrical title treatment, poster-grade lighting, and film-poster hierarchy.design-generate once more with stricter layout instructions such as use a separate copy column or title block, reserve negative space away from the pet, and treat the pet silhouette as a no-text zone.If a previously seen key later fails with an authentication error such as C40100, C40101, C40102, or C40103, stop using it immediately and show the onboarding copy again so the user can register or create a new key.
sourceImageUrls and assetImages.superhero
Use heroic costume cues, dramatic rim light, powerful stance, action mood, city skyline or cinematic energy field, and bold blockbuster atmosphere.
Keep the pet clearly recognizable. Do not turn the pet into a generic human hero.
astronaut
Use a premium space suit, helmet or space-travel cues, stars, moon, spacecraft interior or cosmic background, and sci-fi adventure atmosphere.
Keep the pet's face and species identity readable through the costume treatment.
medieval-noble
Use regal garments, velvet or brocade textures, noble jewelry, palace or oil-painting mood, warm classical light, and aristocratic posture.
Keep it elegant and believable rather than comedic costume chaos.
For stage 1, call the official Mew image-process API directly:
curl -sS -X POST "https://api.mew.design/open/api/image/process" \
-H "Content-Type: application/json" \
-H "x-api-key: USER_PROVIDED_KEY" \
-d '{
"prompt": "Transform the provided pet photo into a premium superhero movie character while preserving the same pet identity, fur pattern, face shape, and species cues. Add heroic costume, cinematic lighting, and blockbuster atmosphere. No text.",
"sourceImageUrls": ["https://example.com/pet-photo.jpg"],
"aspect_ratio": "3:4",
"image_size": "2K"
}'
For stage 2, call the official Mew design-generate API directly:
curl -sS -X POST "https://api.mew.design/open/api/design/generate" \
-H "Content-Type: application/json" \
-H "x-api-key: USER_PROVIDED_KEY" \
-d '{
"userQuery": "Create a cinematic movie poster starring the transformed pet hero. Title: Captain Mochi. Subtitle: The City Needs Paws. Keep the transformed pet image as the main hero.",
"designConcept": "Blockbuster movie poster, dramatic lighting, theatrical title treatment, readable text-safe areas, premium composition.",
"width": 1080,
"height": 1600,
"assetImages": [
{
"url": "https://example.com/transformed-pet-hero.jpg",
"tag": "main transformed pet hero must appear accurately"
}
]
}'
When the poster is generated successfully, respond with:

[Open original image](https://...)
Also include one short line saying what the pet was transformed into.
When a user provides a local-only image, use a consent-first explanation like:
你这张宠物图片现在是本地文件/聊天附件,还不是公网 URL。为了把它作为变身素材喂给生成接口,我建议你优先直接给我一个公网可访问的图片 URL,这样更稳,也更方便复用。
如果你现在没有可用 URL,我也可以先帮你临时上传到第三方文件托管,换成一个可访问的图片 URL,再拿这个 URL 去生成。
需要先说明一下:这相当于会把图片发送到外部服务。
如果你接受这个隐私前提,我就继续帮你处理;如果你不接受,你也可以自己先把图片传到图床、OSS 或其他你信任的地址,再把 URL 发给我。
design-generate API for the final poster composition stage.