← Back to Skills Marketplace
germey

Hailuo Video

by Germey · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
121
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install acedatacloud-hailuo-video
Description
Generate AI videos with Hailuo (MiniMax) via AceDataCloud API. Use when creating videos from text descriptions or animating images into video. Supports text-...
README (SKILL.md)

Hailuo Video Generation

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

Authentication

export ACEDATACLOUD_API_TOKEN="your-token-here"

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

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
first_image_url For i2v string Source image URL (required for image-to-video)
mirror No boolean Mirror the output
callback_url No string Async callback URL

Task Polling

POST /hailuo/tasks
{"task_id": "your-task-id"}

States: processingsucceed or failed.

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
  • Use mirror: true to horizontally flip the output if needed
Usage Guidance
This skill appears to be a simple wrapper around AceDataCloud's Hailuo video API and the examples are consistent with that purpose, but the package metadata omitted the required ACEDATACLOUD_API_TOKEN. Before installing or using it: (1) verify the skill's source and trustworthiness (there's no homepage or publisher info), (2) confirm you are willing to provide ACEDATACLOUD_API_TOKEN and that the token's permissions and billing are acceptable, (3) avoid passing private/internal image URLs (the API will fetch external URLs and could leak private resources), (4) be cautious with callback_url values (they can send generated content to third parties), and (5) ask the publisher to update the registry metadata to declare the required env var and provide a homepage or documentation so you can audit the service. If the developer cannot supply provenance or correct the metadata, treat the skill as higher-risk and consider not installing it.
Capability Assessment
Purpose & Capability
SKILL.md describes a straightforward integration with AceDataCloud's Hailuo (MiniMax) API (text→video and image→video). The actions, endpoints, and parameters in the instructions match the described purpose. However, the registry metadata claims no required environment variables while the SKILL.md explicitly says an ACEDATACLOUD_API_TOKEN is required — a metadata inconsistency.
Instruction Scope
Runtime instructions are limited to making HTTP POSTs to https://api.acedata.cloud/hailuo/videos and a task-polling endpoint — no file system reads or unrelated environment access are requested in the SKILL.md. The examples reference external image URLs and optional callback URLs (which can cause data to be sent to third parties), which is within expected scope but worth noting.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk and no third-party packages are pulled in. That minimizes installation risk.
Credentials
The SKILL.md requires ACEDATACLOUD_API_TOKEN (appropriate for a remote API), but the registry metadata lists no required env vars or primary credential — this mismatch is concerning because a secret is needed but not declared in registry data. The required credential itself is proportionate to the stated purpose, but the metadata omission and lack of provenance (unknown source, no homepage) increase risk.
Persistence & Privilege
The skill does not request always:true and has no install actions that modify other skills or system settings. Default autonomous invocation is permitted (platform normal), so there are no elevated persistence or privilege requests in the bundle.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install acedatacloud-hailuo-video
  3. After installation, invoke the skill by name or use /acedatacloud-hailuo-video
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of Hailuo AI Video generation via AceDataCloud API. - Generate AI videos from text or animate a still image into a video - Supports three models: text-to-video, image-to-video, and image-to-video with director mode for precise control - Requires ACEDATACLOUD_API_TOKEN for authentication - Simple API: specify action, prompt, model, and (for i2v) source image URL - Added guidance on supported parameters, workflows, and polling for video generation status
Metadata
Slug acedatacloud-hailuo-video
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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-... It is an AI Agent Skill for Claude Code / OpenClaw, with 121 downloads so far.

How do I install Hailuo Video?

Run "/install acedatacloud-hailuo-video" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Hailuo Video free?

Yes, Hailuo Video is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Hailuo Video support?

Hailuo Video is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Hailuo Video?

It is built and maintained by Germey (@germey); the current version is v1.0.0.

💬 Comments