News Today

NewsToday solves information overload for users who want to stay informed without spending an hour checking scattered sources. Instead of manually browsing W...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
1 · 278 · 1 current installs · 1 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (RSS + WebSearch aggregation, morning/evening brief, breaking alerts, topic tracking, multi-channel push) matches the included scripts and SKILL.md. The scripts implement registration, preference storage, cron registration, prompt generation for morning/evening/breaking briefings, and an RSS feed list — all expected for this purpose.
Instruction Scope
SKILL.md and scripts explicitly instruct the agent to perform WebSearch/WebFetch of public RSS and web pages and to produce summaries — this is necessary for a news aggregator but does mean the agent will fetch content from many external sites at runtime. The scripts that claim 'no network I/O' are prompt generators (they output instructions for the agent to webfetch) which is consistent but worth noting. The skill only asks the agent to read/write data under data/users for preferences; inputs are sanitized to avoid path traversal.
Install Mechanism
No install spec or external downloads; this is an instruction-and-script-only skill (Node >=18 runtime). No archive downloads or third-party package installs are performed by the skill itself.
Credentials
The skill requests no environment variables or external credentials. It does construct cron messages referencing channel names (telegram/feishu/slack/discord) and userId, but it does not request channel tokens or API keys itself — platform-level channel credentials would be used by OpenClaw, which is appropriate and proportional.
Persistence & Privilege
always is false (not force-included). The skill writes/reads small JSON profiles under data/users/<userId>.json to store preferences and push status; file IO includes path checks and id sanitization to mitigate path traversal. It also emits __OPENCLAW_CRON_ADD__/__OPENCLAW_CRON_RM__ console tokens to register cron jobs with the platform, which is expected for scheduled push behavior.
Assessment
This skill appears to do what it says: aggregate public RSS feeds and web searches and generate briefings and scheduled push notifications. Before installing, consider: 1) the agent will perform network fetches and searches of public sites at runtime — if you have privacy concerns, review which sources are fetched (RSS list is in scripts/rss-fetch.js); 2) the skill will store minimal user preference files under data/users/<userId>.json on the host — ensure you’re comfortable with that storage location and the platform's access controls; 3) the skill does not request or contain channel API keys, so the platform will use its own channel credentials to deliver messages — verify the platform's channel integrations and permissions; 4) scheduled pushes are registered via platform cron tokens emitted to stdout (__OPENCLAW_CRON_ADD__), which is normal but means the platform will run the skill on the configured schedule. If any of these behaviors are undesirable, request a version that restricts network fetches, disables cron registration, or exposes clearer storage/retention policies.

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

Current versionv2.0.3
Download zip
latestvk9706vhwctv9gjpqcfjejp8bed8400c9

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

NewsToday

私人新闻助手 — 早报 · 晚报 · RSS聚合 · 突发提醒 · 话题追踪 · 个性化推送

何时使用

  • 用户说"早报""今天新闻""新闻摘要""今天发生了什么"
  • 用户问"热搜""微博热榜""知乎热榜"
  • 用户想看某类新闻:科技、财经、娱乐、体育、社会、国际
  • 用户说"追踪 XX""XX 最新消息""XX 怎么样了"
  • 用户说"开启推送""订阅早报""每天推新闻"
  • 用户说"突发""重大消息""有什么大事"

🌐 语言规则

  • 默认中文;用户英文提问切英文
  • 新闻标题保留原文,摘要用回复语言改写

📋 功能说明

早报

从 RSS(新浪/澎湃/36氪/BBC中文/Reuters中文)+ WebSearch 双源聚合,去重后选10条覆盖不同领域,按用户话题偏好加权排序,每条含标题、来源、2句摘要。

晚报

收官3-5条当日重要新闻 + 1-2条热点最新进展 + 明日日程预告。

突发新闻提醒

每2小时检测(08:00-22:00),仅在满足阈值(7级以上地震、市场熔断、重大政策等)时推送,不骚扰用户。

热榜聚合

搜索微博热搜 + 知乎热榜 + 百度热搜,去重合并,标注来源,多平台共同热点置顶。

话题追踪

搜索 {关键词} 最新 {日期} + {关键词} 进展 + {关键词} 官方回应,时间线倒序输出,含各方反应。

深读

用户回复序号或说"详细说说 XX"时,多角度搜索,交叉验证,呈现详细经过、各方反应、延伸阅读。

分类浏览

分类搜索词
科技科技新闻 今日、AI新闻
财经财经新闻 今日、股市
娱乐娱乐新闻 今日
体育体育新闻 今日、赛事结果
社会社会新闻 今日、民生
国际国际新闻 今日、外交

🔧 脚本说明

# 注册(可选,解锁个性化推送)
node scripts/register.js <userId> [language] [topics] [channel]
# 示例:
node scripts/register.js alice zh 科技,财经,国际 telegram
node scripts/register.js bob en tech,finance telegram

# 话题偏好
node scripts/preference.js show <userId>
node scripts/preference.js set <userId> <话题> <权重0-1>
node scripts/preference.js reset <userId>

# 手动触发(不需要注册)
node scripts/morning-push.js [userId]
node scripts/evening-push.js [userId]
node scripts/rss-fetch.js [--lang zh|en] [--topics 科技,财经,国际]
node scripts/breaking-alert.js <userId>

# 推送管理
node scripts/push-toggle.js on <userId> [--morning 08:00] [--evening 20:00] [--channel telegram]
node scripts/push-toggle.js off <userId>
node scripts/push-toggle.js status <userId>

支持渠道:telegram / feishu / slack / discord


⚠️ 注意事项

  1. 每条新闻必须标注来源媒体
  2. 涉及争议内容呈现多方视角,不做立场判断
  3. 不注册可直接使用早晚报;注册后可按话题个性化、开启突发提醒
  4. 用户数据仅存储推送偏好和话题权重(data/users/<userId>.json),不含新闻内容
  5. RSS 源无法访问时自动降级为 WebSearch,不影响正常使用

Files

10 total
Select a file
Select a file to preview.

Comments

Loading comments…