Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

revid-news-to-daily-short将新闻更新为每日短消息

Agent Skill

revid-news-to-daily-short 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,704

周安装

71

GitHub Stars

公开资料未说明

下载量

568
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:revid-news-to-daily-short(将新闻更新为每日短消息)
来源仓库:https://github.com/api00/revid-news-to-daily-short
安装命令:
openclaw skills install revid-news-to-daily-short
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install revid-news-to-daily-short

简介

生成特定主题每日新闻短片,适配频道化内容运营需求。

  • 适合做垂直领域资讯播报或知识更新类项目。
  • 用户提供关键词,系统自动抓取并剪辑成短格式视频。
  • 依赖外部数据源,建议定期检查信息准确性与时效性。
  • revid-news-to-daily-short 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
revid-news-to-daily-short
description
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.
metadata
{"openclaw":{"requires":{"config":["REVID_API_KEY"]}}}

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"
# daily-news.sh
TOPIC="${1:?topic required}"
PID=$(curl -fsS https://www.revid.ai/api/public/v3/render \
  -H "Content-Type: application/json" -H "key: $REVID_API_KEY" \
  -d "$(jq -n --arg p "$TOPIC" '{
    workflow:"article-to-video",
    source:{prompt:$p},
    aspectRatio:"9:16",
    voice:{enabled:true,stability:0.6},
    captions:{enabled:true},
    music:{enabled:true,syncWith:"beats"},
    media:{type:"stock-video",density:"medium",quality:"pro",videoModel:"pro"},
    options:{fetchNews:true,targetDuration:45,summarizationPreference:"summarize",hasToGenerateCover:true},
    render:{resolution:"1080p"}
  }')" | jq -r .pid)
# poll → publish via /publish-now or download the videoUrl …

Examples

Failure modes

SymptomFix
News for niche topic is sparse / off-topicMake the prompt more specific (e.g. "AI coding tools released this week") and consider switching to revid-article-to-short with a hand-picked URL.
Same news repeats day-over-dayTrack pid history client-side and add a date phrase to the prompt: "AI tools — week of 2026-04-26".
Tone too neutral / dry for the nicheAdd voice.voiceId matching a known persona, and pass source.stylePrompt: "Punchy, opinionated, end with a take."

See also

shouldn't research live.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.77%
按下载量换算453

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills