sora-video
Generate AI videos with OpenAI Sora via AceDataCloud API. Use when creating videos from text prompts, generating videos from reference images, or using character references from existing videos. Supports text-to-video, image-to-video, and character-driven generation with multiple models and resolutions.
npx skills add majiayu000/claude-skill-registry --skill sora-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.
# Sora Video Generation Generate AI videos through AceDataCloud's OpenAI Sora API. ## Authentication ```bash export ACEDATACLOUD_API_TOKEN="your-token-here" ``` ## Quick Start ```bash curl -X POST https://api.acedata.cloud/sora/videos \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"prompt": "a golden retriever running on a beach at sunset", "model": "sora-2", "wait": true}' ``` ## Models | Model | Duration | Quality | Best For | |-------|----------|---------|----------| | `sora-2` | 10–15s | Standard | Most tasks (default) | | `sora-2-pro` | 10–25s | Higher | Premium quality, longer videos | ## Workflows ### 1. Text-to-Video ```json POST /sora/videos { "prompt": "a busy Tokyo street at night with neon signs reflecting in rain puddles", "model": "sora-2", "size": "small", "duration": 10, "orientation": "landscape" } ``` ### 2. Image-to-Video Use reference images to guide generation. ```json POST /sora/videos { "prompt": "the scene gradually comes alive with gentle motion", "image_urls": ["https://example.com/scene.jpg"], "model": "sora-2", "orientation": "landscape" } ``` ### 3. Character-Driven Video Extract a character from an exi
- Authentication
- Quick Start
- Models
- Workflows
- 1. Text-to-Video
- 2. Image-to-Video
- 3. Character-Driven Video
- Parameters
- Task Polling
- MCP Server
- Gotchas
export ACEDATACLOUD_API_TOKEN="your-token-here" curl -X POST https://api.acedata.cloud/sora/videos \ pip install mcp-sora
What does the sora-video skill do?
Generate AI videos with OpenAI Sora via AceDataCloud API. Use when creating videos from text prompts, generating videos from reference images, or using character references from existing videos. Supports text-to-video, image-to-video, and character-driven generation with multiple models and resolutions.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill sora-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.
