# Send Ai News Aggregator to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ai-news-aggregator",
    "name": "Ai News Aggregator",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lanyasheng/ai-news-aggregator",
    "canonicalUrl": "https://clawhub.ai/lanyasheng/ai-news-aggregator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ai-news-aggregator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-news-aggregator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ai-news-aggregator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ai-news-aggregator",
    "downloadUrl": "https://openagent3.xyz/downloads/ai-news-aggregator",
    "agentUrl": "https://openagent3.xyz/skills/ai-news-aggregator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ai-news-aggregator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ai-news-aggregator/agent.md"
  }
}
```
## Documentation

### AI News Aggregator — AI/技术新闻高性能聚合引擎

并发抓取 100+ RSS 源，12秒完成，支持 ETag/Last-Modified 缓存、日期过滤。

### Setup

确保 Python 3.8+ 可用，无需额外依赖（纯标准库）。

### When to Use

用户需要查看 AI/技术新闻、技术趋势、最新论文、GitHub 热门项目、AI 公司动态时使用。

触发关键词：

"AI 新闻"、"技术新闻"、"今天有什么新闻"
"最新论文"、"arXiv"、"AI 研究"
"GitHub 热门"、"趋势项目"
"OpenAI 动态"、"Anthropic 更新"

### Architecture

ai-news-aggregator/
├── scripts/
│   ├── rss_aggregator.py      # 核心 RSS 抓取器
│   ├── rss_sources.json       # 100+ RSS 源配置
│   ├── arxiv_papers.py        # arXiv 论文搜索
│   ├── github_trending.py     # GitHub 热门项目
│   └── summarize_url.py       # 文章摘要
└── SKILL.md                   # 本文件

### Data Sources

分类源数内容company16OpenAI, Anthropic, Google, Meta, NVIDIA, Apple, Mistral 等官方博客papers6arXiv AI/ML/NLP/CV, HuggingFace Daily Papers, BAIRmedia16MIT Tech Review, TechCrunch, Wired, The Verge, VentureBeat 等newsletter15Simon Willison, Lilian Weng, Andrew Ng, Karpathy 等专家community12HN, GitHub Trending, Product Hunt, V2EX 等cn_media5机器之心, 量子位, 36氪, 少数派, InfoQai-agent5LangChain, LlamaIndex, Mem0, Ollama, vLLM 博客twitter10Sam Altman, Karpathy, LeCun, Hassabis 等 AI 领袖

### RSS 聚合

# 抓取所有源（最近3天新闻）
python3 skills/ai-news-aggregator/scripts/rss_aggregator.py --category all --days 3 --limit 10

# 只看公司博客
python3 skills/ai-news-aggregator/scripts/rss_aggregator.py --category company --days 1 --limit 5

# 只看中文媒体
python3 skills/ai-news-aggregator/scripts/rss_aggregator.py --category cn_media --days 3 --limit 10

# AI Agent 相关
python3 skills/ai-news-aggregator/scripts/rss_aggregator.py --category ai-agent --days 7 --limit 10

# 输出 JSON 格式
python3 skills/ai-news-aggregator/scripts/rss_aggregator.py --category all --days 1 --json

### arXiv 论文

# 最新 AI 论文（按热度排序）
python3 skills/ai-news-aggregator/scripts/arxiv_papers.py --limit 5 --top 10

# 搜索特定主题
python3 skills/ai-news-aggregator/scripts/arxiv_papers.py --query "multi-agent" --top 5

### GitHub Trending

# AI 相关热门项目（今日）
python3 skills/ai-news-aggregator/scripts/github_trending.py --ai-only

# 本周热门
python3 skills/ai-news-aggregator/scripts/github_trending.py --since weekly

### 1. 优先使用 --days 参数

默认抓取最近 N 天的新闻，避免获取过期内容：

日报：--days 1
周报：--days 7
月报：--days 30

### 2. 分类选择策略

用户需求推荐分类公司动态--category company技术论文--category papers中文资讯--category cn_media社区趋势--category communityAI Agent--category ai-agent

### 3. 缓存机制

首次抓取后自动缓存（ETag/Last-Modified）
缓存有效期 1 小时
重复抓取秒级完成

### Configuration

编辑 scripts/rss_sources.json 添加/删除 RSS 源：

{
  "name": "OpenAI Blog",
  "url": "https://openai.com/blog/rss.xml",
  "category": "company"
}
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lanyasheng
- Version: 2.2.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ai-news-aggregator)
- [Send to Agent page](https://openagent3.xyz/skills/ai-news-aggregator/agent)
- [JSON manifest](https://openagent3.xyz/skills/ai-news-aggregator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ai-news-aggregator/agent.md)
- [Download page](https://openagent3.xyz/downloads/ai-news-aggregator)