ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/api00/revid-news-to-daily-short
Or

Topic / 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

FieldRequiredNotes
promptyesThe topic / niche
aspectRationoDefault 9:16
targetDurationnoDefault 45 (s)
Cron / schedulingexternalThis skill renders one video; loop externally for daily delivery.

Step-by-step

  1. Build the payload (note: options.fetchNews: true is the magic switch).
  2. POST /render.
  3. Poll /status.
  4. For a daily channel, schedule this in cron / GitHub Actions / Vercel Cron and post the resulting videoUrl to the target social account. Use POST /api/public/v3/publish-now if 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

Author@api00
Stars4473
Views1
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-news-to-daily-short": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.