Install
openclaw skills install ecommerce-skillsUse when users need ecommerce image help such as background removal, transparent or white background output, blurry photo restoration, or listing image generation from a product photo.
openclaw skills install ecommerce-skillsThis is the public root skill for Designkit ecommerce image workflows. Keep user-facing replies product-focused, then route to the correct bundled workflow.
Current capabilities:
Cutout-Express: remove background and output transparent/white background images (designkit-edit-tools)Clarity-Boost: restore blurry images and improve quality (designkit-edit-tools)Listing-Kit: multi-step ecommerce listing image generation (designkit-ecommerce-product-kit)Common search terms:
background removal, transparent background, white background, image enhancement,
image restoration, listing images, product hero image, amazon listing images, Designkit.
designkit-edit-tools - General Image EditingRoute to this skill when user intent matches:
designkit-ecommerce-product-kit - Ecommerce Product Kit (Multi-step)Route to this skill when user intent matches, and read __SKILL_DIR__/skills/designkit-ecommerce-product-kit/SKILL.md:
Use a conversational Q&A style, not a command-line style. Follow this flow:
Intent recognition -> Missing parameter collection -> Execution confirmation -> API call -> Result delivery
Match user request to a concrete capability using the routing rules above and the
triggers field in __SKILL_DIR__/api/commands.json.
Read the capability spec in __SKILL_DIR__/api/commands.json and check parameters:
requiredask_if_missing wordingoptional fields, use defaults without askingFollow-up priority: asset image > platform/language/size > content requirements > style requirements
Follow-up template:
I understand your goal. I still need one key input: [parameter]. You can choose [A] / [B] / [C]. If you skip it, I will proceed with [default].
After parameters are complete, briefly restate the action. Example:
Great, I will remove the background and return a transparent result.
Then execute immediately without asking for an extra confirmation turn.
bash __SKILL_DIR__/scripts/run_command.sh <action> --input-json '<params_json>'
Example:
bash __SKILL_DIR__/scripts/run_command.sh sod --input-json '{"image":"https://example.com/photo.jpg"}'
This command is internal execution guidance for the agent. Do not quote command lines to end users unless they explicitly ask for technical implementation details.
Parse script JSON output:
ok: true -> extract image URLs from media_urls and show with ok: false -> read error_type and user_hint, then respond with actionable guidancedesignkit-edit-tools matches, read __SKILL_DIR__/skills/designkit-edit-tools/SKILL.md,
map to the exact capability, then execute with the flow above.designkit-ecommerce-product-kit matches, read
__SKILL_DIR__/skills/designkit-ecommerce-product-kit/SKILL.md, then after product image is available:
first assistant turn asks only for selling points/style preference; second assistant turn (after user reply)
asks only for platform/market/language/aspect ratio. Do not merge those two steps into one message.
Then run the bundled ecommerce workflow entrypoint. Use sensible defaults for missing config and avoid repeated follow-ups.When execution fails, use error_type to return actionable guidance instead of raw errors:
error_type | Scenario | Suggested action |
|---|---|---|
CREDENTIALS_MISSING | AK not configured | Guide user with user_hint |
AUTH_ERROR | AK invalid/expired | Guide user with user_hint |
ORDER_REQUIRED | Insufficient credits | Visit Designkit to get credits; do not auto-retry |
QPS_LIMIT | Request rate limit | Ask user to retry later |
TEMPORARY_UNAVAILABLE | Service/system issue | Ask user to retry later |
PARAM_ERROR | Parameter issue | Check and retry with corrected input |
UPLOAD_ERROR | Image upload failed | Check network or try another image |
API_ERROR | Image processing failed | Try another image |
Always show user_hint to users and do not expose raw JSON payloads.
OPENCLAW_REQUEST_LOG=0).X-Openclaw-AK) are redacted in logs.