Install
openclaw skills install chenyu-aigcGenerate AI videos and images via Chenyu Studio AIGC API. Supports text-to-video, image-to-video, video extension, style transfer, and AI image generation. Trigger when: generate video, create AI video, text to video, image to video, AI image generation, video generation, 生成视频, AI视频, 文生视频, 图生视频, 生成图片.
openclaw skills install chenyu-aigcGenerate videos and images using AI models through the Chenyu Studio AIGC orchestration API.
Authorization: Bearer $CHENYU_API_KEY
Base URL: $CHENYU_BASE_URL (default: https://chenyu.pro)
curl -s "$CHENYU_BASE_URL/api/v1/aigc/recipes" \
-H "Authorization: Bearer $CHENYU_API_KEY" | jq '.data[] | {recipe_id, name, slug, description, output_type}'
Each recipe represents an AI model capability. Key response fields:
recipe_id — use this ID when executingslug — human-readable identifier (e.g. volcengine-seedance-v1-pro)output_type — what it produces: video, image, audiocurl -s "$CHENYU_BASE_URL/api/v1/aigc/recipes/{recipe_id}/schema" \
-H "Authorization: Bearer $CHENYU_API_KEY" | jq '.data'
The schema tells you:
typed_inputs_schema.definitions — accepted input types and their fieldsparameters_schema — available parameters with constraints (min/max/enum)credit_cost / credit_cost_rules — how many credits it costsAfter getting the schema, read execute-recipe.md for execution details.