Install
openclaw skills install daily-maoxuan-article每日毛泽东选集文章推送。AI深度解读,支持 Obsidian 文档生成和 Telegram 推送。75篇文章库,每日一篇。
openclaw skills install daily-maoxuan-article每天一篇毛泽东选集文章,AI 深度解读
"解一篇文章,传递一段历史,连接一种智慧" —— 不是语录推送,是"思想操作系统",每天清晨在算法试图麻痹人类时,强制进行一次高强度认知重启。
export TELEGRAM_BOT_TOKEN="your-bot-token"
export TELEGRAM_CHAT_ID="your-chat-id" # 替换为你的 Telegram chatId
export SEEDREAM_API_KEY="your-key" # 图片生成用(可选)
export MAOXUAN_OUTPUT_DIR="/tank/obsidian/每日毛选"
# 生成今日文章并推送(Obsidian + Telegram)
python3 scripts/daily_article.py
# 仅输出到对话(不推送)
python3 scripts/daily_article.py --chat
# 不发送 Telegram(仅生成文档)
python3 scripts/daily_article.py --no-send
# 使用简单模式(不调用 AI)
python3 scripts/daily_article.py --simple
已配置每日 9:08 自动推送:
openclaw cron create --name "每日毛选文章推送" --schedule "0 9 * * *" --agent your-agent --task "执行每日毛选文章推送"
| 章节 | 内容 | 说明 |
|---|---|---|
| 一 | 文章定位与核心命题 | 文章的历史坐标与核心论点 |
| 二 | 历史背景:时空坐标 | 1938/1942年的临场感 |
| 三 | 核心内容深度解析 | 严密论证,为什么重要 |
| 四 | 跨文本关联与思想脉络 | 关联其他毛泽东论述 |
| 五 | 实证数据与历史影响 | 具体人物、事件、数据 |
| 六 | 当代启示与认知重构 | 1942 vs 今天类比 |
| 七 | 批判性反思 | 思维的局限与边界 |
生成内容前强制自检三个维度:
daily-maoxuan-article/
├── SKILL.md
├── scripts/
│ ├── daily_article.py # 主推送脚本 v6.0
│ ├── generate_daily.py # 配图生成脚本(可选)
│ └── deep_gen.py # AI 深度解读生成
└── references/
├── mao-articles.md # 75篇文章数据库
└── config.json
/tank/obsidian/每日毛选/YYYY-MM-DD.md| 变量 | 说明 | 必填 |
|---|---|---|
TELEGRAM_BOT_TOKEN | Telegram Bot Token | Telegram 推送必填 |
TELEGRAM_CHAT_ID | Telegram Chat ID | Telegram 推送必填 |
SEEDREAM_API_KEY | Seedream 图片 API Key | 配图生成可选 |
MAOXUAN_OUTPUT_DIR | Obsidian 输出目录 | 可选 |
技能版本: 9.0.1 | 上次审查: 2026-05-15
ASI03 (High) — resolved in v9.0.1: DeepSeek API key removed from source code. Now reads from DEEPSEEK_API_KEY environment variable. Added to frontmatter requires.env. Users must set this env var before running.
ASI03 (Medium) — resolved in v9.0.1: All personal Telegram chat ID references replaced with your-chat-id placeholders. Users must set TELEGRAM_CHAT_ID to their own chat.
ASI10 (Low) — by design: This is a daily push skill. Persistent cron automation is the intended use case. Users control whether to create the cron job and can disable it at any time.
ASI02 (Medium) — resolved in v9.0.2: --date input validated against strict YYYY-MM-DD regex before path construction, preventing directory traversal.