revid-product-description-to-ad
Turn a product description (free-form text — no URL needed) into a punchy 15–30 second AI-generated ad with hooks, CTA, and visuals. Use when the user pastes copy or specs but doesn't have a live page to scrape.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-product-description-to-adProduct description → AI ad
Take a paragraph (or bullet list) describing a product and produce a polished
short-form ad. The ad-generator workflow writes the hook + body + CTA itself
based on the description.
When to use this skill
- The user pastes a product description, spec sheet, or feature list — not a URL.
- They want hook → benefit → CTA structure (a commercial).
- They have no avatar / talking-head requirement (use
revid-blog-to-avatar-videofor that). - For a live URL, use
revid-shopify-product-promo.
Inputs
| Field | Required | Notes |
|---|---|---|
prompt | yes | The product description (the AI uses it as the brief) |
stylePrompt | no | Optional brand voice notes (e.g. "Apple-like, calm, premium") |
aspectRatio | no | Default 9:16 |
targetDuration | no | Default 22 (s) |
mediaItems | no | If you have product images, pass them in media.provided |
Step-by-step
- Validate
prompthas at least ~30 words (otherwise the ad is too thin). - Build the payload below; if product images were provided, slot them into
media.providedand setmedia.useOnlyProvided: false(mix with stock). - POST
/render. - Poll
/status. - Return
videoUrl.
API call template
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "ad-generator",
"source": {
"prompt": "{PRODUCT_DESCRIPTION}",
"stylePrompt": "{OPTIONAL_BRAND_VOICE_NOTES}",
"durationSeconds": 22
},
"aspectRatio": "9:16",
"voice": { "enabled": true, "stability": 0.55, "speed": 1.05, "language": "en-US" },
"captions": { "enabled": true, "position": "middle", "autoCrop": true },
"music": { "enabled": true, "syncWith": "beats", "trackName": "ad-energetic" },
"media": {
"type": "stock-video",
"density": "high",
"animation": "dynamic",
"quality": "ultra",
"imageModel": "ultra",
"videoModel": "ultra",
"turnImagesIntoVideos": true,
"applyStyleTransfer": false,
"provided": []
},
"options": {
"targetDuration": 22,
"promptTargetDuration": 22,
"summarizationPreference": "summarizeIfLong",
"soundEffects": true,
"addStickers": true,
"hasToGenerateCover": true,
"coverTextType": "hook"
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
ad-generator defaults to higher visual quality than article-to-video because
ads compete on the first second. If credits are tight drop quality to pro.
Examples
examples/aeropods-ad.json— payload with brand notes.examples/run.sh— accepts description as a file or positional arg.
Failure modes
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-product-description-to-ad": {
"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.