Generates AI videos with Hailuo (MiniMax) via AceDataCloud API. Supports text-to-video and image-to-video with director mode for precise camera and motion control.
How this skill is triggered — by the user, by Claude, or both
Slash command
/acedatacloud-ai-media:hailuo-videoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate AI videos through AceDataCloud's Hailuo (MiniMax) API.
Generate AI videos through AceDataCloud's Hailuo (MiniMax) API.
Setup: See authentication for token setup.
curl -X POST https://api.acedata.cloud/hailuo/videos \
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"action": "generate", "prompt": "a dolphin jumping through ocean waves at golden hour", "model": "minimax-t2v"}'
Async: See async task polling. Poll via
POST /hailuo/taskswith{"id": "..."}.
| Model | Type | Best For |
|---|---|---|
minimax-t2v | Text-to-Video | Creating video from text description |
minimax-i2v | Image-to-Video | Animating a still image |
minimax-i2v-director | Image-to-Video (Director) | Precise control over animation from image |
POST /hailuo/videos
{
"action": "generate",
"prompt": "a time-lapse of flowers blooming in a meadow",
"model": "minimax-t2v"
}
Animate a still image into a video clip.
POST /hailuo/videos
{
"action": "generate",
"prompt": "gentle wind blows through the scene",
"model": "minimax-i2v",
"first_image_url": "https://example.com/landscape.jpg"
}
More precise control over the animation.
POST /hailuo/videos
{
"action": "generate",
"prompt": "camera slowly zooms in while leaves fall gently",
"model": "minimax-i2v-director",
"first_image_url": "https://example.com/scene.jpg"
}
| Parameter | Required | Values | Description |
|---|---|---|---|
action | Yes | "generate" | Action type |
prompt | Yes | string | Video description |
model | Yes | "minimax-t2v", "minimax-i2v", "minimax-i2v-director" | Model |
first_image_url | For i2v | string | Source image URL (required for image-to-video) |
callback_url | No | string | Async callback URL |
first_image_url is required for minimax-i2v and minimax-i2v-director modelsminimax-i2v-director) provides finer camera/motion control than standard i2vaction field currently only supports "generate" — no extend or editnpx claudepluginhub acedatacloud/skills --plugin acedatacloud-ai-toolsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.