← Back to Skills Marketplace
dongrebeccahhh-boop

Industry News Agent

by dongrebeccahhh-boop · GitHub ↗ · v3.1.1 · MIT-0
cross-platform ✓ Security Clean
156
Downloads
0
Stars
0
Active Installs
11
Versions
Install in OpenClaw
/install industry-news-agent
Description
每日行业资讯追踪助手。通过 RSS 订阅获取科技媒体的最新文章(最近24小时),过滤后推送。支持自定义关键词和新闻来源媒体。
README (SKILL.md)

行业资讯小哨兵

通过 RSS 订阅获取科技媒体最新文章,只推送昨天的资讯。


⚠️ 核心特点

  • RSS 订阅 - 直接获取媒体最新文章,更准确
  • 只抓昨天 - 确保时效性,不重复推送
  • 关键词过滤 - 只看关心的内容
  • 自主配置 - 可添加你关注的媒体和关键词

📊 获取逻辑

1. 访问 RSS 订阅源 → 获取媒体最新文章
2. 过滤最近24小时的文章 → 根据 pubDate
3. 过滤关键词 → AI/智能体/大模型等(可自主配置)
4. 关注动态 → 发布/上线/合作/融资/商业化/技术突破
5. 排除广告/招聘/培训/软文
6. 输出 → 标题 + 日期 + 媒体名称 + 摘要(100字) + 链接

🚀 快速开始

安装后配置

1. 修改配置文件

nano ~/.openclaw/workspace/skills/industry-news-agent/config.yaml

2. 测试运行

python3 ~/.openclaw/workspace/skills/industry-news-agent/scripts/fetch_news.py

⚙️ 配置示例

# RSS 订阅源(可自主添加你关注的媒体)
rss_sources:
  - name: 36氪
    url: https://36kr.com/feed
  - name: 虎嗅
    url: https://www.huxiu.com/rss/0.xml
  - name: 雷锋网
    url: https://www.leiphone.com/feed

# 关注关键词(可自主配置)
keywords_include:
  - AI
  - 智能体
  - 大模型
  - 发布
  - 融资
  - 技术突破

# 排除关键词
keywords_exclude:
  - 招聘
  - 培训
  - 广告

# 结果数量
max_results_per_source: 5
max_total_results: 15

📰 已配置的媒体

科技媒体

媒体 说明
36氪 创投科技媒体
虎嗅 商业科技媒体
雷锋网 AI/智能硬件
少数派 数字生活效率
爱范儿 科技数码媒体

财经媒体

媒体 说明
金融时报中文 国际财经

科学媒体

媒体 说明
Science Daily 科学新闻
Nature 顶级学术期刊

📤 输出示例

📰 行业资讯 - 2026-03-25
========================================

### 1. 速腾聚创首次实现单季盈利
**日期**:2026-03-25
**媒体**:36氪

**摘要**:3月25日,速腾聚创公布2025年第四季度及全年业绩报告。财报显示,2025年全年,速腾聚创实现营收约19.41亿元...

**链接**:https://36kr.com/p/37397129...

---

共 12 条资讯

🔧 使用方式

手动运行

python3 ~/.openclaw/workspace/skills/industry-news-agent/scripts/fetch_news.py

设置每日自动推送

(crontab -l 2>/dev/null; echo "0 9 * * * python3 ~/.openclaw/workspace/skills/industry-news-agent/scripts/fetch_news.py") | crontab -

❓ 常见问题

Q: 如何添加新的 RSS 源?

A: 编辑 config.yaml,添加:

rss_sources:
  - name: 媒体名称
    url: https://example.com/feed

Q: 如何修改关键词?

A: 编辑 config.yaml,修改 keywords_includekeywords_exclude


📝 更新日志

  • v3.1.0 - 🔧 改为获取最近24小时文章;修复 pubDate 解析 bug(Element 布尔判断问题)
  • v3.0.2 - 修复日期过滤过严导致返回空结果的问题
  • v3.0.0 - 新增8个RSS源(科技/财经/科学),优化关键词过滤,输出增加日期
  • v2.0.1 - 摘要长度改为200字
  • v2.0.0 - 改用 RSS 订阅,无需 API Key
Usage Guidance
This skill appears internally consistent for fetching and filtering RSS news. Before installing: (1) review the included scripts yourself — running arbitrary Python from an unknown source has inherent risk, even if this script looks simple; (2) ensure PyYAML is installed (script imports 'yaml') or add an installation step; (3) check and limit the RSS sources in config.yaml so you only contact trusted hosts (adding feeds can make the script fetch from arbitrary domains); (4) run the script in a restricted environment or sandbox (or inspect it locally) if you are cautious; (5) be aware the script strips timezone information when parsing pubDate which can affect which items qualify as “yesterday.” Overall this looks coherent and appropriate for its described purpose, but standard caution about running third‑party code and network requests still applies.
Capability Analysis
Type: OpenClaw Skill Name: industry-news-agent Version: 3.1.1 The skill is a legitimate RSS news aggregator designed to fetch and summarize industry news from reputable sources (e.g., 36kr, Nature, FT). The Python script (scripts/fetch_news.py) uses standard libraries for network requests and XML parsing, employs safe YAML loading, and contains no evidence of data exfiltration, command injection, or malicious prompt instructions.
Capability Assessment
Purpose & Capability
Name/description (RSS-based news fetcher) align with included config and the Python script which fetches RSS feeds, filters by date/keywords, and formats output. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md only directs the agent/user to edit the skill's config.yaml, run the included fetch_news.py, and optionally add a cron job. The instructions do not ask the agent to read unrelated system files, environment variables, or transmit data to unexpected endpoints.
Install Mechanism
There is no explicit install spec (instruction-only), which minimizes risk. The included script imports 'yaml' (PyYAML) but SKILL.md does not document installing that dependency; user must ensure PyYAML is available. No external install URLs or archives are used.
Credentials
The skill requests no environment variables, no credentials, and no unusual config paths. Network access to RSS feed URLs is required and proportional to the purpose. Adding arbitrary RSS sources could cause the script to contact other hosts — this is expected but should be reviewed by the user.
Persistence & Privilege
Skill is not forced-always, uses standard user cron suggestion for scheduling, and does not modify other skills or system-wide agent settings. It does not attempt to persist credentials or elevate privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install industry-news-agent
  3. After installation, invoke the skill by name or use /industry-news-agent
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v3.1.1
改为获取最近24小时文章;修复 pubDate 解析 bug
v3.0.2
修复日期过滤过严导致返回空结果的问题,放宽到最近3天,添加 fallback 机制
v3.1.0
v3.1.0: 强制固定输出格式,确保所有实例输出一致
v3.0.1
v3.0.1: 更新SKILL.md输出示例,确保格式正确
v3.0.0
v3.0.0: 新增8个RSS源(科技/财经/科学);优化关键词(关注发布/融资/技术突破);输出增加日期;摘要改为100字
v2.0.1
v2.0.1: 摘要长度改为200字;更新获取逻辑说明
v2.0.0
v2.0.0: 重大更新!改用 RSS 订阅获取媒体最新文章,更准确;无需 API Key;已配置 36氪/虎嗅/少数派/爱范儿
v1.2.1
v1.2.1: 移除结尾签名
v1.2.0
v1.2.0: 强调只抓昨日文章,支持指定关注公众号,每个来源至少3个,排除词增加软文,输出显示公众号名称
v1.1.0
v1.1.0: 新增多来源搜索(公众号+科技媒体+新闻门户),所有配置项必填,提供完整示例
v1.0.0
首次发布:每日抓取昨日公众号文章,支持自定义关键词和排除词
Metadata
Slug industry-news-agent
Version 3.1.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 11
Frequently Asked Questions

What is Industry News Agent?

每日行业资讯追踪助手。通过 RSS 订阅获取科技媒体的最新文章(最近24小时),过滤后推送。支持自定义关键词和新闻来源媒体。 It is an AI Agent Skill for Claude Code / OpenClaw, with 156 downloads so far.

How do I install Industry News Agent?

Run "/install industry-news-agent" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Industry News Agent free?

Yes, Industry News Agent is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Industry News Agent support?

Industry News Agent is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Industry News Agent?

It is built and maintained by dongrebeccahhh-boop (@dongrebeccahhh-boop); the current version is v3.1.1.

💬 Comments