- 新增常驻调度器 daily/scheduler.py + run-scheduler.ps1(定时生成/推送) - 新增 daily/bridge_manager.py:Windows 兼容的 Cursor SDK 桥接 - 新增 skills/daily-featured-pick 首推 Skill 与叙事轴/去重逻辑 - 新闻抓取窗口、GitHub 搜索、企微 delta 模式等多项改进 - 补充设计文档与 superpowers 计划/规范 - 新增对应测试(scheduler、featured_pick、github_search、news_fetch_window 等) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
63 lines
1.4 KiB
Python
63 lines
1.4 KiB
Python
"""国内 AI 时讯 RSS 源定义(按类别分组)。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from daily.news.feeds import NewsCategory, NewsFeed
|
|
|
|
# 综合源 ai_filter=True 时,仅保留标题命中以下词之一的条目
|
|
CN_AI_TITLE_KEYWORDS: tuple[str, ...] = (
|
|
"人工智能",
|
|
"大模型",
|
|
"智能体",
|
|
"多模态",
|
|
"AIGC",
|
|
"LLM",
|
|
"GPT",
|
|
"Claude",
|
|
"Gemini",
|
|
"ChatGPT",
|
|
"OpenAI",
|
|
"Anthropic",
|
|
"Copilot",
|
|
"Agent",
|
|
"AI ",
|
|
" AI",
|
|
"AI·",
|
|
"AI业务",
|
|
"AI模型",
|
|
"AI助手",
|
|
"AI工具",
|
|
"AI编程",
|
|
"AI 编程",
|
|
"AI版",
|
|
"AI Agent",
|
|
"推理模型",
|
|
"深度学习",
|
|
"机器学习",
|
|
"Function Calling",
|
|
)
|
|
|
|
CN_NEWS_CATEGORIES: tuple[NewsCategory, ...] = (
|
|
NewsCategory(
|
|
id="media",
|
|
name="AI 专业媒体",
|
|
icon="📰",
|
|
feeds=(
|
|
NewsFeed("量子位", "https://www.qbitai.com/feed"),
|
|
),
|
|
),
|
|
NewsCategory(
|
|
id="tech",
|
|
name="综合科技",
|
|
icon="📱",
|
|
feeds=(
|
|
NewsFeed("36氪", "https://36kr.com/feed", ai_filter=True),
|
|
NewsFeed("雷锋网", "https://www.leiphone.com/feed"),
|
|
NewsFeed(
|
|
"Google News · AI",
|
|
"https://news.google.com/rss/search?q=人工智能+OR+大模型+OR+Agent+OR+LLM&hl=zh-CN&gl=CN&ceid=CN:zh-Hans",
|
|
),
|
|
),
|
|
),
|
|
)
|