← 返回 Skills 市场
Industry News Agent
作者
dongrebeccahhh-boop
· GitHub ↗
· v3.1.1
· MIT-0
156
总下载
0
收藏
0
当前安装
11
版本数
在 OpenClaw 中安装
/install industry-news-agent
功能描述
每日行业资讯追踪助手。通过 RSS 订阅获取科技媒体的最新文章(最近24小时),过滤后推送。支持自定义关键词和新闻来源媒体。
使用说明 (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_include 和 keywords_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
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install industry-news-agent - 安装完成后,直接呼叫该 Skill 的名称或使用
/industry-news-agent触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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
首次发布:每日抓取昨日公众号文章,支持自定义关键词和排除词
元数据
常见问题
Industry News Agent 是什么?
每日行业资讯追踪助手。通过 RSS 订阅获取科技媒体的最新文章(最近24小时),过滤后推送。支持自定义关键词和新闻来源媒体。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 156 次。
如何安装 Industry News Agent?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install industry-news-agent」即可一键安装,无需额外配置。
Industry News Agent 是免费的吗?
是的,Industry News Agent 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Industry News Agent 支持哪些平台?
Industry News Agent 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Industry News Agent?
由 dongrebeccahhh-boop(@dongrebeccahhh-boop)开发并维护,当前版本 v3.1.1。
推荐 Skills