File contents 每日 AI 行业日报推送
适用场景
每天定时生成并推送一份 AI 行业日报,减少手工整理成本。;- 固定时间自动产出日报,不用每天手动找新闻。
功能说明
每日 AI 行业日报推送
每天定时生成并推送一份 AI 行业日报,减少手工整理成本。
这个案例能帮你做什么
固定时间自动产出日报,不用每天手动找新闻。
支持直接发到飞书、Telegram、企微、钉钉等渠道。
失败会写日志,便于排查任务稳定性。
你需要的 Skills(按类型)
类型
Skill / 工具
用途
来源
内置
openclaw message send
发送日报消息
OpenClaw CLI
外部(系统)
bash + crontab
定时调度与日志记录
系统工具
渠道
feishu / telegram / wecom / dingtalk
接收日报
消息渠道
快速体验版(先跑一轮)
把原文脚本保存为 ~/daily-report.sh,然后手动执行一次:
bash ~/daily-report.sh
稳定自动版(可长期运行)
1) 原文脚本
#!/bin/bash
# OpenClaw 每日AI日报自动推送脚本
# 使用方法:添加到crontab: 0 9 * * * ~/daily-report.sh
# 配置
OPENCLAW_BIN="openclaw"
CHANNEL="feishu" # 或 telegram, wecom, dingtalk
LOG_FILE="$HOME/.openclaw/logs/daily-report.log"
# 日志函数
log() {
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" | tee -a "$LOG_FILE"
}
# 开始执行
log "开始生成每日AI日报"
# 生成日报内容
PROMPT="请生成今天的AI行业日报,包括:
1. 最新的AI技术动态(3-5条)
2. 重要的产品发布或更新
3. 行业趋势分析
4. 值得关注的研究论文
请用简洁的格式呈现,每条新闻包含标题、简介和链接。"
# 发送消息
if $OPENCLAW_BIN message send --channel "$CHANNEL" --message "$PROMPT"; then
log "✅ 日报推送成功"
else
log "❌ 日报推送失败"
exit 1
fi
log "完成"
2) 定时任务(原文)
0 9 * * * ~/daily-report.sh
成功标准
每天固定时段收到日报。
失败会记录到日志并可定位原因。
更换渠道后不影响日报生成逻辑。
源文件
来源:awesome-openclaw-zh 原始文件:daily-ai-news-report-push.md
1 --- 2 name: daily-ai-news-report-push 3 description: 每日 AI 行业日报推送 4 --- 5 6 # 每日 AI 行业日报推送 7 8 ## 适用场景 9 > 每天定时生成并推送一份 AI 行业日报,减少手工整理成本。;- 固定时间自动产出日报,不用每天手动找新闻。 10 11 ## 功能说明 12 # 每日 AI 行业日报推送 13 14 > 每天定时生成并推送一份 AI 行业日报,减少手工整理成本。 15 16 ## 这个案例能帮你做什么 17 18 - 固定时间自动产出日报,不用每天手动找新闻。 19 - 支持直接发到飞书、Telegram、企微、钉钉等渠道。 20 - 失败会写日志,便于排查任务稳定性。 21 22 ## 你需要的 Skills(按类型) 23 24 | 类型 | Skill / 工具 | 用途 | 来源 | 25 |---|---|---|---| 26 | 内置 | `openclaw message send` | 发送日报消息 | OpenClaw CLI | 27 | 外部(系统) | `bash` + `crontab` | 定时调度与日志记录 | 系统工具 | 28 | 渠道 | `feishu` / `telegram` / `wecom` / `dingtalk` | 接收日报 | 消息渠道 | 29 30 ## 快速体验版(先跑一轮) 31 32 把原文脚本保存为 `~/daily-report.sh`,然后手动执行一次: 33 34 ```bash 35 bash ~/daily-report.sh 36 ``` 37 38 ## 稳定自动版(可长期运行) 39 40 ### 1) 原文脚本 41 42 ```bash 43 #!/bin/bash 44 # OpenClaw 每日AI日报自动推送脚本 45 # 使用方法:添加到crontab: 0 9 * * * ~/daily-report.sh 46 47 # 配置 48 OPENCLAW_BIN="openclaw" 49 CHANNEL="feishu" # 或 telegram, wecom, dingtalk 50 LOG_FILE="$HOME/.openclaw/logs/daily-report.log" 51 52 # 日志函数 53 log() { 54 echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" | tee -a "$LOG_FILE" 55 } 56 57 # 开始执行 58 log "开始生成每日AI日报" 59 60 # 生成日报内容 61 PROMPT="请生成今天的AI行业日报,包括: 62 1. 最新的AI技术动态(3-5条) 63 2. 重要的产品发布或更新 64 3. 行业趋势分析 65 4. 值得关注的研究论文 66 67 请用简洁的格式呈现,每条新闻包含标题、简介和链接。" 68 69 # 发送消息 70 if $OPENCLAW_BIN message send --channel "$CHANNEL" --message "$PROMPT"; then 71 log "✅ 日报推送成功" 72 else 73 log "❌ 日报推送失败" 74 exit 1 75 fi 76 77 log "完成" 78 ``` 79 80 ### 2) 定时任务(原文) 81 82 ```bash 83 0 9 * * * ~/daily-report.sh 84 ``` 85 86 ## 成功标准 87 - 每天固定时段收到日报。 88 - 失败会记录到日志并可定位原因。 89 - 更换渠道后不影响日报生成逻辑。 90 91 ## 源文件 92 来源:awesome-openclaw-zh 93 原始文件:daily-ai-news-report-push.md
YangYuChen-Work/awesome-ai-skills/tree/main/社交媒体/daily-ai-news-report-push commit 19f553baa9
Frequently asked questions How do I install the Daily AI News Report Push skill? Run npx skillmds@latest add yangyuchen-work/daily-ai-news-report-push in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Daily AI News Report Push skill do? 每日 AI 行业日报推送 It is listed under Docs & Writing on SkillMD.
Is Daily AI News Report Push safe to use? This skill has not completed SkillMD's automated safety review yet. Capability flags: docs only. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Daily AI News Report Push? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Daily AI News Report Push free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Daily AI News Report Push? YangYuChen-Work (@yangyuchen-work) published this skill. Their other Agent Skills are listed on their SkillMD profile.