luma-video
Generate AI videos with Luma Dream Machine via AceDataCloud API. Use when creating videos from text prompts, generating videos from reference images, extending existing videos, or any video generation task with Luma. Supports text-to-video, image-to-video, and video extension.
npx skills add majiayu000/claude-skill-registry --skill luma-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.
# Luma Video Generation Generate AI videos through AceDataCloud's Luma Dream Machine API. ## Authentication ```bash export ACEDATACLOUD_API_TOKEN="your-token-here" ``` ## Quick Start ```bash curl -X POST https://api.acedata.cloud/luma/videos \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"prompt": "a drone flying over a mountain lake at sunrise", "action": "generate", "wait": true}' ``` ## Workflows ### 1. Text-to-Video Generate video purely from a text description. ```json POST /luma/videos { "prompt": "a timelapse of flowers blooming in a garden", "action": "generate", "aspect_ratio": "16:9", "loop": false, "enhancement": true } ``` ### 2. Image-to-Video Use start and/or end reference images to guide generation. ```json POST /luma/videos { "prompt": "the scene comes alive with gentle wind", "action": "generate", "start_image_url": "https://example.com/scene.jpg", "end_image_url": "https://example.com/scene-end.jpg", "aspect_ratio": "16:9" } ``` ### 3. Extend a Video Continue an existing video with a new prompt. ```json POST /luma/videos { "action": "extend", "video_id": "existing-video-id", "prompt": "the camera continues forward
- Authentication
- Quick Start
- Workflows
- 1. Text-to-Video
- 2. Image-to-Video
- 3. Extend a Video
- Aspect Ratios
- Parameters
- Task Polling
- MCP Server
- Gotchas
export ACEDATACLOUD_API_TOKEN="your-token-here" curl -X POST https://api.acedata.cloud/luma/videos \ pip install mcp-luma
What does the luma-video skill do?
Generate AI videos with Luma Dream Machine via AceDataCloud API. Use when creating videos from text prompts, generating videos from reference images, extending existing videos, or any video generation task with Luma. Supports text-to-video, image-to-video, and video extension.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill luma-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.
