/install pixmind-video
Pixmind Video Generation Skill
Generate AI videos using Pixmind. Supports text-to-video and image-to-video generation.
Note: The API endpoint
aihub-admin.aimix.prois the official Pixmind API gateway. Result URLs onchatmix.topare Pixmind's CDN for generated content.
When to use
- User asks to generate or create a video
- User wants to animate an existing image into a video
- User requests video content from a text description
Prerequisites
- Register at pixmind.io
- Create an API key at pixmind.io/api-keys
- Set env
PIXMIND_API_KEYwith your key
API Details
Endpoint: POST https://aihub-admin.aimix.pro/open-api/v1/video/generate
Auth: Header X-API-Key: {API_KEY} (from env PIXMIND_API_KEY)
Request Body (JSON)
| Parameter | Required | Type | Description |
|---|---|---|---|
prompt |
Yes | string | Video description / prompt |
model |
No | string | Model name |
duration |
No | number | Video duration in seconds |
aspectRatio |
No | string | Aspect ratio: 16:9, 9:16, 1:1 |
resolution |
No | string | Resolution: 1080p, 720p |
generateType |
No | string | text2video (default) or img2video |
imageUrl |
No | string | Reference image URL (required for img2video) |
Usage
Use curl or the included helper script:
# Text to video (via curl)
curl -X POST https://aihub-admin.aimix.pro/open-api/v1/video/generate \
-H "Content-Type: application/json" \
-H "X-API-Key: $PIXMIND_API_KEY" \
-d '{"prompt": "ocean waves", "duration": 5, "aspectRatio": "16:9"}'
# Or use the helper script
node {baseDir}/video-generate.js --prompt "描述文字" --duration 5 --aspect-ratio 16:9
Task Status Polling
After generation, poll for results:
# Via curl
curl https://aihub-admin.aimix.pro/open-api/v1/task/\x3CTASK_ID> \
-H "X-API-Key: $PIXMIND_API_KEY"
# Or use the helper script
node {baseDir}/task-status.js --task-id \x3CTASK_ID> --poll
Response Format
Generate response:
{"code": 1000, "data": {"taskId": 19401, "status": "processing"}}
Task status response:
{
"code": 1000,
"data": {
"taskId": 19401,
"status": "ready",
"progress": 100,
"videoUrl": "https://chatmix.top/...",
"coverUrl": "https://chatmix.top/..."
}
}
data.taskId— Use this to poll status- Status values:
processing→ready(success) - On success:
data.videoUrlcontains the video URL,data.coverUrlhas the cover image
Guidelines
- Always confirm the prompt and duration with the user before generating
- Default to
text2videomode unless user provides a reference image - Use
16:9aspect ratio by default for video content - If user provides a reference image, automatically use
img2videomode - Video generation takes longer than images — use
--pollwith appropriate interval - After getting the task ID, poll until completion and return video URL
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install pixmind-video - After installation, invoke the skill by name or use
/pixmind-video - Provide required inputs per the skill's parameter spec and get structured output
What is Pixmind Video Generation?
Generate AI videos via Pixmind API (text-to-video and image-to-video). It is an AI Agent Skill for Claude Code / OpenClaw, with 138 downloads so far.
How do I install Pixmind Video Generation?
Run "/install pixmind-video" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Pixmind Video Generation free?
Yes, Pixmind Video Generation is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Pixmind Video Generation support?
Pixmind Video Generation is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Pixmind Video Generation?
It is built and maintained by Pixmind (@fuyunzhishang); the current version is v1.3.0.