agentsclimarketplace

Hailuo video

Skill AceDataCloud/Skills/skills/hailuo-video

Agent Skills for AceDataCloud AI services — music, image, video generation, web search, and more. Compatible with Claude Code, GitHub Copilot, Gemini CLI, and all agentskills.io-compatible agents.

Install
npx -y skills add AceDataCloud/Skills --skill hailuo-video

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

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.

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.8 KB, 684 tokens by cl100k_base, as published. Nobody here has run it

Hailuo Video Generation

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

Setup: See authentication 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. Poll via POST /hailuo/tasks with {"id": "..."}.

Models

ModelTypeBest For
minimax-t2vText-to-VideoCreating video from text description
minimax-i2vImage-to-VideoAnimating a still image
minimax-i2v-directorImage-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

ParameterRequiredValuesDescription
actionYes"generate"Action type
promptYesstringVideo description
modelYes"minimax-t2v", "minimax-i2v", "minimax-i2v-director"Model
first_image_urlFor i2vstringSource image URL (required for image-to-video)
callback_urlNostringAsync callback URL

Gotchas

  • first_image_url 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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.