revid-prompt-to-video
Turn a one-line idea into a full short video — Revid writes the script, picks visuals, and assembles the cut. Use when the user has a topic but no script.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-prompt-to-videoIdea prompt → video
The lowest-input skill. The user types one line ("Why honey never spoils") and Revid handles everything: script, visuals, voice, music, cuts.
When to use this skill
- Source is a topic, question, or one-line concept — no script.
- The user is OK letting the AI choose the angle and structure.
- For a known script, use
revid-script-to-video. - For an idea + brand voice, use
revid-product-description-to-ad.
Inputs
| Field | Required | Notes |
|---|---|---|
prompt | yes | The idea (one or two sentences) |
stylePrompt | no | Optional tone notes |
durationSeconds | no | Default 35 (s) |
aspectRatio | no | Default 9:16 |
Step-by-step
- Validate
promptis non-empty. - POST
/render. - Poll
/status.
API call template
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "prompt-to-video",
"source": {
"prompt": "{ONE_LINE_IDEA}",
"stylePrompt": "{OPTIONAL_TONE_NOTES}",
"durationSeconds": 35
},
"aspectRatio": "9:16",
"voice": { "enabled": true, "stability": 0.6, "speed": 1.0, "language": "en-US" },
"captions": { "enabled": true, "position": "middle", "autoCrop": true },
"music": { "enabled": true, "syncWith": "beats" },
"media": {
"type": "stock-video",
"density": "medium",
"animation": "soft",
"quality": "pro",
"videoModel": "pro",
"imageModel": "good"
},
"options": {
"promptTargetDuration": 35,
"summarizationPreference": "summarizeIfLong",
"soundEffects": true,
"hasToGenerateCover": true
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
Examples
examples/honey-prompt.jsonexamples/run.sh
Failure modes
| Symptom | Fix |
|---|---|
| Script angle is generic ("Did you know…") | Add stylePrompt with a specific angle: "Open with a contrarian claim. End with a question that invites comments." |
| Off-niche visuals | Mention concrete subjects in the prompt: "Why honey never spoils — show beehives, ancient Egyptian jars, microscope close-ups of crystallized honey." |
| Too long / too short | Use durationSeconds AND options.promptTargetDuration together (some legacy paths only read one). |
See also
revid-script-to-videowhen you have the words.revid-product-description-to-adfor ads.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-api00-revid-prompt-to-video": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
revid-article-to-short
Turn any news article or long-form post URL into a 30–60 second 9:16 short with stock visuals, narration, and captions. Use when the user shares a link and wants an edited summary, not a talking-head.
revid-news-to-daily-short
Generate a daily news short on a topic Revid researches itself. Use for a recurring "news of the day in <niche>" channel — the user only supplies the topic; Revid fetches fresh news, writes the script, and produces the video.
revid-api-foundations
Foundation knowledge for every Revid skill — auth, the single render endpoint, the workflow discriminator, polling, webhooks, and the response envelope. Load this once at session start; specific skills build on it.
revid-blog-to-avatar-video
Turn a blog post URL into a talking-head avatar video — the avatar reads a summarized script of the post against a clean background. Use when the user wants a personal/expert delivery vs an edited promo.
revid-pdf-to-video
Turn a PDF (whitepaper, ebook chapter, slide deck export, research paper) into a short summary video. Use when the source is a PDF URL or a PDF the agent can upload to public storage first.