- 新增常驻调度器 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>
27 lines
257 B
Python
27 lines
257 B
Python
from daily.news.fetch import (
|
|
|
|
fetch_ai_news,
|
|
|
|
fetch_cn_ai_news,
|
|
|
|
format_cn_news_section,
|
|
|
|
format_news_section,
|
|
|
|
)
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
"fetch_ai_news",
|
|
|
|
"fetch_cn_ai_news",
|
|
|
|
"format_news_section",
|
|
|
|
"format_cn_news_section",
|
|
|
|
]
|
|
|