acedatacloud/skills

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.

First seen Apr 6, 2026

Installation

$ npx skills add acedatacloud/skills --skill hailuo-video

Also in this package

Other skills from acedatacloud/skills · top by installs.

npx skills add acedatacloud/skills

Browse all from acedatacloud/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 17
License LICENSE
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0
LicenseApache-2.0
CompatibilityRequires ACEDATACLOUD_API_TOKEN in .env file (see _shared/authentication.md).
More metadata
author
acedatacloud
version
1.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,821 B
  • docs SUMMARY.md 241 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 217 installs

SKILL.md

Hailuo Video Generation

Generate AI videos through AceDataCloud's Hailuo (MiniMax) API.

Setup: See [authentication](../_shared/authentication.md) for token setup.

Quick Start

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](../_shared/async-tasks.md). Poll via POST /hailuo/tasks with {"id": "..."}.

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

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.

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-Video (Director Mode)

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"
}

Parameters

Parameter Required Values Description
action Yes "generate" Action type
prompt Yes string Video description
model Yes "minimax-t2v", "minimax-i2v", "minimax-i2v-director" Model
firstimageurl For i2v string Source image URL (required for image-to-video)
callback_url No string Async callback URL

Gotchas

  • firstimageurl is required for minimax-i2v and minimax-i2v-director models
  • Director mode (minimax-i2v-director) provides finer camera/motion control than standard i2v
  • The action field currently only supports "generate" — no extend or edit
  • Flat pricing per generation regardless of model