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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-news-to-daily-shortTopic / niche → daily news short
Recurring use case: feed a topic ("AI tools this week", "F1 race results", "crypto headlines") and let Revid fetch live news, summarize it, and produce a short. This is the right skill for automated daily channels.
When to use this skill
- The user wants a recurring daily short on a topic — they don't have a specific URL.
- They are happy with whatever Revid surfaces from the news for that topic.
- For a known article URL use
revid-article-to-short. - For a custom angle / angle the news doesn't cover use
revid-prompt-to-video.
Inputs
| Field | Required | Notes |
|---|---|---|
prompt | yes | The topic / niche |
aspectRatio | no | Default 9:16 |
targetDuration | no | Default 45 (s) |
| Cron / scheduling | external | This skill renders one video; loop externally for daily delivery. |
Step-by-step
- Build the payload (note:
options.fetchNews: trueis the magic switch). - POST
/render. - Poll
/status. - For a daily channel, schedule this in cron / GitHub Actions / Vercel Cron
and post the resulting
videoUrlto the target social account. UsePOST /api/public/v3/publish-nowif your Revid account has the relevant socials connected.
API call template
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "article-to-video",
"source": {
"prompt": "{TOPIC_OR_NICHE}"
},
"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", "trackName": "news-upbeat" },
"media": {
"type": "stock-video",
"density": "medium",
"animation": "soft",
"quality": "pro",
"videoModel": "pro",
"imageModel": "good"
},
"options": {
"fetchNews": true,
"targetDuration": 45,
"summarizationPreference": "summarize",
"soundEffects": true,
"hasToGenerateCover": true,
"coverTextType": "headline"
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
options.fetchNews: true tells Revid to crawl fresh news for the prompt
instead of using the prompt as the script directly.
Daily automation example
# crontab — every day at 06:00
0 6 * * * /opt/revid/daily-news.sh "AI tools this week"
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-news-to-daily-short": {
"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-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.
revid-tweet-to-talking-head
Turn an X/Twitter/LinkedIn post (URL or pasted thread text) into a talking-head video that delivers the take. Use when a creator wants to repurpose a viral post as a short-form video.