Product Description → Ad
FREEby Revid@revid_ai
New503 installsSecurity verified
What it does
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. Calls the Revid MCP server (render_video → get_project_status).
Skill Files
SKILL.md
MD
---
name: revid-product-description-to-ad
description: 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. Calls the Revid MCP server (render_video → get_project_status).
---
# Product description → AI ad
> Calls the **Revid MCP server** (`https://www.revid.ai/api/mcp`). Install once — see [`revid-api-foundations`](../revid-api-foundations/SKILL.md#install-the-revid-mcp-server).
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-video`](../revid-blog-to-avatar-video/SKILL.md)
for that).
- For a live URL, use
[`revid-shopify-product-promo`](../revid-shopify-product-promo/SKILL.md).
## 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
1. Validate `prompt` has at least ~30 words (otherwise the ad is too thin).
2. Build the payload below; if product images were provided, slot them into
`media.provided` and set `media.useOnlyProvided: false` (mix with stock).
3. Call MCP tool `render_video` with the payload below — returns `data.pid`.
4. Then poll MCP tool `get_project_status` with that `pid` every 5–8 s until
`data.status === "ready"` (read `data.videoUrl`).
5. *(Optional)* Call `export_video` with `{ pid, fileName }` for a freshly
named mp4.
## `render_video` arguments
```json
{
"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`.
## Polling
Call `get_project_status` with the `pid` returned by `render_video`. Stop when
`data.status === "ready"`; fail when `data.status === "failed"`. Cadence: 5 s,
then 8 s once `progress > 30`. Full pseudocode:
[`revid-api-foundations` § Polling](../revid-api-foundations/SKILL.md#polling).
## Examples
- [`examples/aeropods-ad.json`](examples/aeropods-ad.json) — copy-paste body for
`render_video` *(also a valid POST body for the direct HTTPS fallback)*.
- [`examples/run.sh`](examples/run.sh) — bash smoke test using the **direct
HTTPS fallback**; accepts description as a file or positional arg.
## Failure modes
| Symptom | Fix |
|---|---|
| Hook is generic | Make `prompt` specific. `"Wireless earbuds"` → meh. `"Wireless earbuds with adaptive ANC and 38h battery for $179"` → strong. |
| Ad reads like a feature list, not a hook | Add `stylePrompt: "Lead with a question or emotional hook. Save specs for the middle. End with the price + a single CTA."` |
| Visuals don't match the product | Pass real product images via `media.provided: [{ url, type: "image" }]`. The AI will weave them in. |
| Voice rushes | Lower `voice.speed` to `0.95`. |
| Too many on-screen stickers | `options.addStickers: false`. |
| `ok: false`, `error: "insufficient_credits"` | Drop `media.quality` to `"standard"` or `render.resolution` to `"720p"`, or call `buy_credit_pack`. |
## See also
- [`revid-shopify-product-promo`](../revid-shopify-product-promo/SKILL.md) — same
goal but starts from a URL.
- [`revid-script-with-custom-media`](../revid-script-with-custom-media/SKILL.md)
— full creative control.How to install
1
Add the Revid MCP server to your agent:
{
"mcpServers": {
"revid": {
"url": "https://www.revid.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_REVID_API_KEY"
}
}
}
}Get a key at revid.ai/account. The MCP server exposes render_video, get_project_status, export_video, calculate_credits, and 9 more tools.
2
Pick your agent and copy the install:
Native install
openclaw skills install revid-product-description-to-adOne command. Pulls from ClawHub, uses the Revid MCP server, auto-updates.
Skills are plain SKILL.md + JSON that wrap the Revid MCP server. Native install on OpenClaw via ClawHub. Drop-in for Claude Skills. Reference-only for Codex, Cursor, and Gemini — fork the repo and adapt for any other runtime.