← 返回
未分类

AI Frontier Monitor

AI frontier intelligence briefing — aggregate, score, and deliver structured daily briefings from 5 tracks (RSS enterprise, 36kr hotlist, arXiv papers, GitHu...
AI前沿情报简报——聚合、评分并提供来自5个渠道的结构化每日简报(企业RSS、36氪热榜、arXiv论文、GitHub趋势等)
lynxpurr lynxpurr 来源
未分类 clawhub v3.0.3 3 版本 100000 Key: 无需
★ 1
Stars
📥 464
下载
💾 0
安装
3
版本
#ai#daily-briefing#enterprise#intelligence#latest#rss#tech-news

概述

AI 前沿情报汇总

> 信息聚合 ≠ 信息堆砌。每日情报经筛选、评分、分层后输出,不做 50 条标题的噪音。

When to Use

触发词(任意语言):

  • "AI 前沿" / "情报汇总" / "每日情报" / "frontier monitor" / "daily briefing" → 全量简报
  • "今天有什么信号" / "signal check" / "快速扫描" / "what signals today" → 快速信号检测
  • "arXiv 最新" / "论文追踪" / "paper tracker" / "latest papers" → 仅 arXiv 轨道
  • "GitHub Trending" / "AI 热榜" / "trending AI" → 仅 GitHub 轨道

Architecture: 5-Track Parallel

TrackSourceScriptPriority
---------------------------------
🏢 Enterprise11 RSS feeds (OpenAI/AWS/Techmeme/...){baseDir}/scripts/rss-crawler.py then {baseDir}/scripts/generate-briefing.py --candidates ⭐⭐⭐⭐⭐
🇨🇳 China36kr Hotlist APIcurl https://openclaw.36krcdn.com/media/hotlist/{date}/24h_hot_list.json⭐⭐⭐⭐
📚 PapersarXiv cs.AI/cs.LG/cs.CL{baseDir}/scripts/arxiv-fetch.sh --category cs.AI --days 7 --max 10⭐⭐⭐
🔥 GitHubGitHub Trending (AI/ML){baseDir}/scripts/github-trending-fetch.sh --period daily⭐⭐⭐
🔍 AnthropicWeb search supplementweb_search tool⭐⭐⭐⭐⭐

> For full data source details, read {baseDir}/references/data-sources.md

Workflow

Step 1: Fetch All Tracks

# Track 1: RSS (run crawler first, outputs to {baseDir}/data/candidates/)
python3 {baseDir}/scripts/rss-crawler.py

# Track 2-4: Generate briefing (all tracks auto-fetched)
python3 {baseDir}/scripts/generate-briefing.py --mode full

Modes: full | quick | arxiv | github

Step 2: Auto-Score & Tier

Each candidate without a score is auto-scored (0-5) by keyword matching across 4 dimensions:

DimensionWeightWhat to look for
------------------------------------
Enterprise landing40%Real company name, deployment scale
Data support20%Quantified metrics (% improvement, $ saved)
Learnability20%Methodology, architecture, lessons learned
Novelty20%New scene, new product, not old news

Source bonus: OpenAI/AWS +1.0, Techmeme +0.5, PH/HN +0.3

Tiers are dynamic (based on actual score distribution, not hardcoded thresholds):

  • 🔴 Core: top ~15% or ≥3.5 (max 3)
  • 🟡 Worth watching: top ~30% or ≥2.5 (max 5)
  • 🟢 Quick scan: ≥1.0 (max 8, 36kr first)

> For scoring keywords and signal detection rules, read {baseDir}/references/scoring.md

Step 3: Detect Signals

Extract cross-track signals into 3 dimensions:

  • 🛠 Tech trends — new models, architectures, frameworks, benchmarks
  • 🏢 Product launches — new releases, open-source, GA announcements
  • 💰 Funding/M&A — investments, acquisitions, IPOs

Step 4: Render Briefing

Strict format — emoji headers, tiered sections, signal summary. Output in Chinese (中文为主). Total ≤ 16 items across all tiers.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🤖 AI 前沿情报 · {Day} {Date}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📡 数据源:11 RSS + 36kr + arXiv + GitHub + Anthropic
   候选:{N} 条 | 高质量:{M} 条 | 阈值:核心≥{X} / 关注≥{Y}

## 🔴 核心情报({N} 条)
### 1. {Title}
🔗 {Link}
💡 启示:{One-line insight}

## 🟡 值得关注({N} 条)
1. **{Title}**
   🔗 {Link}

## 🟢 快速浏览({N} 条)
• [{Title}]({Link})

## 📚 arXiv · 论文追踪(≤3 篇)
**{Title}** — {Authors} | {Date}
摘要:{Abstract[:150]}... → {Link}

## 🔥 GitHub Trending · AI(≤3 个)
**{Repo}** ({Lang}) +{TodayStars}⭐ → {Link}

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📊 今日信号
🛠 技术趋势:{signal}
🏢 产品发布:{signal}
💰 资本动向:{signal}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
⏰ {HH:MM} | ai-frontier-monitor v3.0

Step 5: Deliver & Archive

  1. Reply in conversation — 直接在当前对话输出简报
  2. Push to Feishu — 通过 message 工具发送到飞书(channel: feishu, to: user ID)
  3. Save to file — 将完整简报保存为 Markdown 文件到:

```

{baseDir}/data/briefings/{YYYY-MM-DD}-frontier-briefing.md

```

保存时覆盖当日内容。

Data Directory

All runtime data is stored under {baseDir}/data/:

{baseDir}/data/
├── candidates/          # RSS 爬取的候选条目 (JSON)
│   └── *_candidates.json
├── briefings/           # 生成的简报 (Markdown)
│   └── YYYY-MM-DD-frontier-briefing.md
└── rss-state.json       # RSS 爬取状态

> {baseDir} is the skill root directory containing this SKILL.md. All paths use {baseDir} for portability.

Edge Cases

SituationAction
-------------------
No candidates (RSS empty)Run with 36kr + arXiv + GitHub only, skip RSS section
arXiv API timeout (>30s)Skip paper section, log warning
GitHub fetch failsSkip trending section, log warning
36kr API 404 (no data yet)Skip 36kr items in quick scan
Zero high quality items (<2 at ≥2.5)Return NO_REPLY instead of empty briefing
Same company appears in multiple sourcesDeduplicate, keep highest-scored entry
First run (no data dir)Auto-create {baseDir}/data/ and subdirectories

Skill Integration

SkillRole
-------------
wechat-curatorWeChat articles → 🟢 Quick scan supplement
zsxq-helperZsxq content → independent push (not in main briefing)
rss-crawler.pyRSS fetching engine (11 sources) — now included in {baseDir}/scripts/

Configuration

Edit {baseDir}/references/BRIEFING_CONFIG.md to customize:

  • Quantity limits per tier
  • Data source on/off switches
  • Signal detection thresholds
  • Delivery target (Feishu user ID / Discord channel / etc.)

Quality Gates

  • Max 16 items per day (3+5+5+3 papers)
  • NO_REPLY when <2 quality candidates
  • Deduplicate same company/product, keep highest score
  • 3 consecutive days below 3 core items → trigger keyword review

Dependencies

  • Python 3.8+ with feedparser (for RSS crawling)
  • bash (for arXiv/GitHub fetch scripts)
  • curl (for 36kr API)
  • web_search tool (for Anthropic track)

_Last updated: 2026-05-09 | v3.0_

版本历史

共 3 个版本

  • v3.0.3 当前
    2026-05-11 04:34 安全 安全
  • v3.0.0
    2026-05-09 16:54 安全
  • v2.2.1
    2026-05-08 00:41 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

knowledge-management

Summarize

paudyyin
智能摘要工具,自动为长文本、文档、网页生成摘要,提取要点与关键词,支持自定义摘要长度。
★ 957 📥 518,572
knowledge-management

Obsidian

steipete
操作 Obsidian 仓库(纯 Markdown 笔记)并通过 obsidian-cli 自动化。
★ 445 📥 104,911
knowledge-management

Baidu web search

ide-rea
使用百度AI搜索引擎(BDSE)进行网络搜索。适用于获取实时信息、文档资料或研究课题。
★ 245 📥 107,479