Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

News Summary Voice

v1.0.1

新闻汇总与语音播报工具。获取国际可信 RSS 源新闻,生成语音摘要。当用户要求新闻更新、每日简报、世界动态、AI 播报新闻时触发。支持多语言,跨平台(macOS/Linux/Windows)。

0· 215·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for realorange1994/news-summary-voice.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "News Summary Voice" (realorange1994/news-summary-voice) from ClawHub.
Skill page: https://clawhub.ai/realorange1994/news-summary-voice
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install news-summary-voice

ClawHub CLI

Package manager switcher

npx clawhub@latest install news-summary-voice
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name/description (fetch RSS, summarize, TTS) matches the instructions: it shows concrete RSS sources, parsing commands, and platform-specific TTS approaches. Asking for no env vars, no installs, and no persistent privileges is proportionate to a lightweight news/TTS helper.
Instruction Scope
Instructions stay within news-fetching and TTS. Minor concerns: (1) a malformed/odd Xinhua RSS URL (contains Chinese character '臆' in the domain/path) that looks like a typo or malicious URL, (2) use of rsshub.app for AP (a third-party aggregator) rather than an official AP feed, (3) recommendation to use an unspecified 'Coze TTS' tool with no source or install instructions, and (4) examples that download and play audio from an arbitrary '音频URL'—downloading/playing untrusted binaries/audio is a potential risk. Also the decision-tree references as_qdr (a search query filter) which doesn't directly apply to RSS feeds; minor incoherence.
Install Mechanism
No install spec and no code files (instruction-only). This minimizes install risk because nothing is written or executed by an installer. Platform examples call out standard system packages (espeak-ng, ffmpeg) that are reasonable for local TTS playback.
Credentials
The skill requests no credentials, no environment variables, and no config paths. That is proportional to a news/TTS skill. The only proportionality risk is recommending external services/tools (rsshub.app, 'Coze TTS') that may require separate credentials or network access—these are external dependencies the user should vet.
Persistence & Privilege
Skill is not always-enabled, not requesting autonomous elevation or persistent installation. It does not modify other skills or system configs in the instructions.
Assessment
This skill appears to do what it says (fetch RSS, summarize, speak). Before installing or using it: (1) verify and fix the suspicious/mistyped Xinhua RSS URL (the domain/path with '臆' looks wrong), (2) prefer official feeds where possible (rsshub.app is a third-party proxy—replace with publisher-hosted RSS if available), (3) vet the 'Coze TTS' tool (find an official source/repo and inspect it) before using it, (4) avoid automatically downloading/playing audio from untrusted 'audio URLs'—treat any downloaded media as untrusted content, and (5) be aware you'll need permission to install local TTS packages (espeak-ng/ffmpeg) on Linux. If you want higher assurance, ask the skill author for authoritative feed URLs and source/documentation for Coze TTS.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

📰 Clawdis
latestvk978pzaaapycbq1vxh1v8qmgj18362tt
215downloads
0stars
1versions
Updated 21h ago
v1.0.1
MIT-0

News Summary Voice 📰

新闻汇总 + 语音播报,跨平台支持。

触发条件

  • 用户说"新闻"、"今天发生了什么"、"世界动态"
  • 要求"新闻简报"、"每日总结"
  • 要求"语音播报新闻"
  • 定时新闻推送场景

支持的 RSS 源

国际新闻(英文)

来源RSS URL语言
BBC Worldhttps://feeds.bbci.co.uk/news/world/rss.xmlEN
Reuters Worldhttps://www.reutersagency.com/feed/?best-topics=world-newsEN
NPR Newshttps://feeds.npr.org/1001/rss.xmlEN
Al Jazeerahttps://www.aljazeera.com/xml/rss/all.xmlEN
The Guardianhttps://www.theguardian.com/world/rssEN
AP Newshttps://rsshub.app/apnews/topics/apf-topnewsEN

国内新闻(中文)

来源RSS URL语言
新华网https://www.rss臆.com/xml/Rss臆news.xmlZH
人民网http://www.people.com.cn/rss/news.xmlZH
联合早报https://www.zaobao.com.sg/rss/realtime/chinaZH

科技新闻

来源RSS URL
Hacker Newshttps://news.ycombinator.com/rss
TechCrunchhttps://techcrunch.com/feed/
Ars Technicahttps://feeds.arstechnica.com/arstechnica/index

跨平台用法

macOS

# 获取新闻(curl)
curl -s --max-time 10 "https://feeds.bbci.co.uk/news/world/rss.xml" | \
  grep -E '<title>|<link>' | sed 's/<[^>]*>//g' | head -20

# 语音播报(say 命令,macOS 内置)
say "Here is your news briefing."

# 播放新闻音频(curl 下载 + afplay 播放)
curl -s "音频URL" -o /tmp/news.mp3 && afplay /tmp/news.mp3

Linux

# 获取新闻(curl/wget)
curl -s --max-time 10 "https://feeds.bbci.co.uk/news/world/rss.xml" | \
  grep -E '<title>|<link>' | sed 's/<[^>]*>//g' | head -20

# 语音播报(需要安装)
# Ubuntu/Debian: sudo apt install espeak-ng ffmpeg
# CentOS/RHEL: sudo yum install espeak-ng ffmpeg

# TTS 播报(espeak-ng)
espeak-ng "Here is your news briefing." 2>/dev/null

# 或用 Coze TTS 工具生成音频

Windows (PowerShell)

# 获取新闻
[xml]$rss = Invoke-WebRequest -Uri "https://feeds.bbci.co.uk/news/world/rss.xml" -UseBasicParsing
$rss.rss.channel.item | Select-Object -First 10 | ForEach-Object { $_.title }

# 语音播报(Windows TTS)
Add-Type -AssemblyName System.Speech
$synth = New-Object System.Speech.Synthesis.SpeechSynthesizer
$synth.Speak("Here is your news briefing.")

使用决策树

1. 用户要求新闻?
   → 确定语言(中文/英文/双语)

2. 需要哪些来源?
   → 国际热点 → BBC + Reuters + Al Jazeera
   → 国内动态 → 新华网 + 人民网 + 联合早报
   → 科技前沿 → Hacker News + TechCrunch
   → 综合 → 多源混合

3. 需要语音播报?
   → 是 → 用 Coze TTS 工具生成音频
   → 否 → 纯文本摘要

4. 时间范围?
   → 今日 → as_qdr=d 筛选
   → 本周 → as_qdr=w 筛选
   → 全部 → 无筛选

输出格式

## 📰 新闻简报 — 2026年3月19日

### 🌍 国际头条
1. **[标题](链接)** — 摘要...
2. ...

### 🇨🇳 国内动态
1. **[标题](链接)** — 摘要...
2. ...

### 💻 科技前沿
1. **[标题](链接)** — 摘要...
2. ...

### 🎙️ 语音播报
[通过 Coze TTS 工具生成音频]

---
来源:BBC | Reuters | Al Jazeera | 新华网 | Hacker News

注意事项

  • RSS 源可能失效,定期检查
  • 国际新闻源国内可能访问受限
  • 语音播报优先使用 Coze TTS 工具
  • 敏感新闻需人工审核后播报
  • 定时推送建议早起时段(7:00-8:00)执行

Comments

Loading comments...