hailuo-video
Generate AI videos with Hailuo (MiniMax) via AceDataCloud API. Use when creating videos from text descriptions or animating images into video. Supports text-to-video and image-to-video with director mode for precise control.
npx skills add majiayu000/claude-skill-registry --skill hailuo-video-acedatacloud-skills-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Hailuo Video Generation Generate AI videos through AceDataCloud's Hailuo (MiniMax) API. ## Authentication ```bash export ACEDATACLOUD_API_TOKEN="your-token-here" ``` ## Quick Start ```bash 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"}' ``` ## Models | 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 | ## Workflows ### 1. Text-to-Video ```json POST /hailuo/videos { "action": "generate", "prompt": "a time-lapse of flowers blooming in a meadow", "model": "minimax-t2v" } ``` ### 2. Image-to-Video Animate a still image into a video clip. ```json POST /hailuo/videos { "action": "generate", "prompt": "gentle wind blows through the scene", "model": "minimax-i2v", "first_image_url": "https://example.com/landscape.jpg" } ``` ### 3. Image-to-Vide
- Authentication
- Quick Start
- Models
- Workflows
- 1. Text-to-Video
- 2. Image-to-Video
- 3. Image-to-Video (Director Mode)
- Parameters
- Task Polling
- Gotchas
export ACEDATACLOUD_API_TOKEN="your-token-here" curl -X POST https://api.acedata.cloud/hailuo/videos \
What does the hailuo-video skill do?
Generate AI videos with Hailuo (MiniMax) via AceDataCloud API. Use when creating videos from text descriptions or animating images into video. Supports text-to-video and image-to-video with director mode for precise control.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill hailuo-video-acedatacloud-skills-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
