ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/api00/revid-prompt-to-video
Or

Idea 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

FieldRequiredNotes
promptyesThe idea (one or two sentences)
stylePromptnoOptional tone notes
durationSecondsnoDefault 35 (s)
aspectRationoDefault 9:16

Step-by-step

  1. Validate prompt is non-empty.
  2. POST /render.
  3. 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.json
  • examples/run.sh

Failure modes

SymptomFix
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 visualsMention concrete subjects in the prompt: "Why honey never spoils — show beehives, ancient Egyptian jars, microscope close-ups of crystallized honey."
Too long / too shortUse durationSeconds AND options.promptTargetDuration together (some legacy paths only read one).

See also

  • revid-script-to-video when you have the words.
  • revid-product-description-to-ad for ads.

Metadata

Author@api00
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-api00-revid-prompt-to-video": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.