docs: update auto-tasks v1.1 with new brief expansion modules

This commit is contained in:
Beast
2026-06-15 12:38:09 +08:00
parent f31c741abd
commit 0da3fc7896

View File

@ -8,7 +8,7 @@
| 仓库 | `gitea.xybkwd.top/fxy/inspiration-collector` |
| 服务器 | 43.163.225.30ubuntu 用户) |
| 时区 | UTCcron 原生),下表已换算为**北京时间** |
| 版本 | v1.02026-06-15 初始版 |
| 版本 | v1.12026-06-15 新增要闻扩展栏目 |
| 更新记录 | 见文末 |
---
@ -38,7 +38,13 @@
| 任务 | 北京时间 | 频率 | 脚本 | 功能说明 |
|:---|:---:|:---|:---|:---|
| 新闻抓取 | 03:00 / 09:00 / 15:00 / 21:00 | 6h | `scripts/fetch_news.py` | 从 RSS 源抓取国际新闻 → `nav/data/news.json` |
| 新闻摘要 | 03:30 / 09:30 / 15:30 / 21:30 | 6h | `scripts/summarize_news.py` | DeepSeek 精选摘要 → `nav/data/news_summary.json` |
| 新闻摘要 | 03:30 / 09:30 / 15:30 / 21:30 | 6h | `scripts/summarize_news.py` | DeepSeek 精选摘要 → `nav/data/news_summary.json`5分类 |
| **政策 RSS 抓取** | 03:00 / 09:00 / 15:00 / 21:00 | 6h | `scripts/fetch_policy.py` | 抓取新华网/人民网/观察者网等 → `nav/data/policy.json` |
| **政策 AI 摘要** | 03:30 / 09:30 / 15:30 / 21:30 | 6h | `scripts/summarize_policy.py` | DeepSeek 精选政策解读 → `nav/data/policy_summary.json` |
| **研究 RSS 抓取** | 03:15 / 09:15 / 15:15 / 21:15 | 6h | `scripts/fetch_research.py` | 抓取 ArXiv AI/量化博客 → `nav/data/research.json` |
| **研究 AI 摘要** | 03:45 / 09:45 / 15:45 / 21:45 | 6h | `scripts/summarize_research.py` | DeepSeek 分类精选 → `nav/data/research_summary.json`3分类 |
| **市场行情** | 每整点 | 1h | `scripts/fetch_market.py` | A股指数 + 加密货币行情 → `nav/data/market.json` |
| **深度解读** | 22:35 | 每天 | `scripts/deep_dive.py` | 从要闻 Top1 提取 → DeepSeek 深度分析 800-1200 字 → `nav/data/deep_dive.json` |
| 每日简报生成 | 每4小时 | 4h | `scripts/daily_brief_gen.py` | 聚合交易日报 + 灵感分析 + 新闻摘要 → `nav/data/daily_brief.json` |
## 四、系统运维
@ -73,12 +79,20 @@ Memos (灵感记录)
│ │
└─[周日16:00]─→ weekly_trend.py ─→ DeepSeek ─→ .md ─→ Git push
RSS 新闻 ─[每6h]─→ fetch_news.py ─→ news.json ────────────┐
RSS 新闻 ─[每6h]─→ fetch_news.py ─→ news.json ────────────┐
RSS 政策 ─[每6h]──→ fetch_policy.py ─→ policy.json ────────┤
RSS 研究 ─[每6h]──→ fetch_research.py ─→ research.json ────┤
│ │
├─→ summarize_news.py ─→ news_summary.json
│ │
└──────────────────────────────→ daily_brief_gen.py
├─→ summarize_news.py ─→ news_summary.json ────┐
├─→ summarize_policy.py ─→ policy_summary.json ─┤
├─→ summarize_research.py ─→ research_summary ─┤
市场行情 ─[每h]──→ fetch_market.py ─→ market.json ────────┤
│ │
└──────────────────────────────→ brief.html
│ │
深度解读 ─[22:35]──→ deep_dive.py ←── news_summary.json ──┘ │
Freqtrade ─[07:55]─→ daily_brief.py ─→ .txt ──[08:05]─→ Git push │
│ │
Freqtrade ─[每h]──→ export_trades.sh ─→ Git push │
@ -94,4 +108,4 @@ DeepSeek API ─[每h]─→ balance.py ─→ balance.json ──────
| 日期 | 版本 | 变更内容 |
|:---|:---:|:---|
| 2026-06-15 | v1.0 | 初始版本,记录全部 14 条 cron 任务 + 6 个 systemd/Docker 服务 |
| 2026-06-15 | v1.1 | 新增要闻扩展栏目政策速递、AI/量化前沿、市场行情、深度解读,共 6 个新脚本 + 6 条新 cron |