返回顶部
🇺🇸 English
🇨🇳 简体中文
🇨🇳 繁體中文
🇺🇸 English
🇯🇵 日本語
🇰🇷 한국어
🇫🇷 Français
🇩🇪 Deutsch
🇪🇸 Español
🇷🇺 Русский
a

ai-agent-news-aggregator

|

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
131
下载量
1
收藏
概述
安装方式
版本历史

ai-agent-news-aggregator

# AI Agent 资讯聚合技能 ## 功能概述 本技能自动搜集 AI Agent 相关最新资讯,整理后推送到飞书群聊。 ### 核心能力 - 🔍 **多源搜索** - DuckDuckGo 搜索 + RSS 源监控 - 🧹 **智能去重** - 基于标题/URL 相似度合并相同新闻 - 📝 **自动摘要** - 为每条新闻生成一句话摘要 - 📊 **分类整理** - 按技术进展/公司动态/行业应用分类 - 🚀 **飞书推送** - 直接发送到群聊或私聊 --- ## 数据源 ### 搜索关键词(使用 ddg-search) - "AI Agent framework" - "LangChain new release" - "AutoGen update" - "Multi-agent system research" - "Agentic AI" - "CrewAI" - "LlamaIndex" ### RSS 源(使用 blogwatcher) - Hacker News AI/ML tag - r/LocalLLaMA - Anthropic Blog - OpenAI Blog - Hugging Face Blog - LangChain Blog 详细配置见 `scripts/sources.json` --- ## 使用方法 ### 一次性搜集 ```json { "action": "collect", "time_range": "24h", "channel_id": "oc_xxxxxx" } ``` | 参数 | 说明 | 默认值 | |------|------|--------| | time_range | 搜集时间范围 | 24h | | channel_id | 飞书会话 ID | 当前会话 | ### 定时推送(配合 cron) ```json { "action": "schedule", "cron": "0 9 * * 1-5", "channel_id": "oc_xxxxxx", "time_range": "24h" } ``` 示例:工作日每天 9 点推送前一天的资讯 --- ## 输出格式(飞书消息) ``` 🤖 AI Agent 每日简报 - 2026-03-16 🔥 头条 • LangChain 发布新 Agent 框架 - 支持 XX 功能 [链接] 🛠️ 框架更新 • AutoGen v0.4.0 - 新增多 Agent 协作 [链接] • CrewAI 支持 XX [链接] 📚 研究论文 • [论文标题] - arXiv [链接] 🏢 公司动态 • Anthropic 发布 XX [链接] 💼 行业应用 • XX 公司用 Agent 实现 XX [链接] --- 共 12 条资讯 | 来源:DDG + 6 RSS 源 ``` --- ## 脚本说明 ### scripts/search_news.py 调用 ddg-search 搜索多个关键词,返回原始结果列表。 **输入:** ```json { "keywords": ["AI Agent", "LangChain"], "time_range": "24h" } ``` **输出:** ```json { "items": [ {"title": "...", "url": "...", "snippet": "...", "source": "ddg"}, ... ] } ``` ### scripts/deduplicate.py 基于标题和 URL 相似度去重。 **输入:** ```json { "items": [...], "threshold": 0.85 } ``` **输出:** ```json { "items": [...], "removed_count": 5 } ``` ### scripts/summarize.py 调用 LLM 为每条新闻生成一句话摘要。 **输入:** ```json { "items": [...], "max_length": 50 } ``` **输出:** ```json { "items": [ {"title": "...", "url": "...", "summary": "..."}, ... ] } ``` ### scripts/push_to_feishu.py 格式化消息并推送到飞书。 **输入:** ```json { "items": [...], "channel_id": "oc_xxxxxx", "date": "2026-03-16" } ``` **输出:** ```json { "success": true, "message_id": "msg_xxxxxx" } ``` ### scripts/sources.json 配置数据源和推送目标。 ```json { "keywords": [ "AI Agent framework", "LangChain", "AutoGen", "CrewAI", "Multi-agent system" ], "rss_sources": [ "https://news.ycombinator.com/newest", "https://www.anthropic.com/news/rss.xml", "https://openai.com/blog/rss/" ], "feishu": { "channel_id": "oc_xxxxxx" }, "filters": { "min_relevance": 0.7, "max_items_per_category": 5 } } ``` --- ## 完整工作流程 ``` 1. search_news.py → 从 DDG + RSS 抓取原始内容 ↓ 2. deduplicate.py → 去重(基于相似度) ↓ 3. categorize.py → 分类(头条/框架/论文/公司/应用) ↓ 4. summarize.py → 生成摘要 ↓ 5. push_to_feishu.py → 格式化并推送 ``` --- ## 依赖工具 - `ddg-search` - DuckDuckGo 网页搜索 - `blogwatcher` - RSS 源监控(可选) - `web_fetch` - 抓取网页详情(可选) --- ## 配置步骤 1. **编辑 `scripts/sources.json`** - 设置你的飞书 `channel_id` - 自定义搜索关键词 - 添加/删除 RSS 源 2. **测试运行** ``` python scripts/search_news.py ``` 3. **设置定时任务(可选)** 使用 cron 技能设置每日/每周自动推送 --- ## 注意事项 - 首次运行需要安装 Python 依赖(见 scripts/requirements.txt) - 飞书 channel_id 可从群聊 URL 或消息元数据中获取 - 如需推送到私聊,使用你的个人 session_id

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 ai-agent-news-aggregator-1776295983 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 ai-agent-news-aggregator-1776295983 技能

通过命令行安装

skillhub install ai-agent-news-aggregator-1776295983

下载 Zip 包

⬇ 下载 ai-agent-news-aggregator v1.0.0

文件大小: 17.89 KB | 发布时间: 2026-4-17 13:58

v1.0.0 最新 2026-4-17 13:58
AI Agent News Aggregator v1.0.0

- Initial release: Aggregates and pushes the latest AI Agent news to Feishu group chats.
- Supports DuckDuckGo search and multiple RSS feeds for multi-source monitoring.
- Features include automatic deduplication, one-line summarization, category sorting, and formatted daily/weekly briefings.
- Provides cron-based scheduled push and one-time collection commands.
- Customizable data sources, filters, and Feishu channel through configuration files.
- Includes scripts for news collection, deduplication, summarization, and Feishu integration.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部