← 返回 Skills 市场
homer212416

AI开发者日报

作者 Yikai Chen · GitHub ↗ · v1.2.0 · MIT-0
cross-platform ✓ 安全检测通过
55
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install ai-developer-daily
功能描述
AI开发者日报 - 每天整理国际和中国AI/开发者新闻,国际在前、中国在后。支持编号回复展开详情。自动定时推送或用户主动触发。
使用说明 (SKILL.md)

AI 开发者日报

自动整理每日 AI 及开发者圈的重点新闻,分为 国际中国 两个板块。每条带编号和原文链接,用户回复编号,展开深度简报。

触发方式

  • 定时推送:每天早上 8:00(Asia/Shanghai)通过 cron 触发
  • 主动触发:用户说"AI开发者日报"、"今天AI圈有什么"、"整理开发者日报" 等

Workflow Routing

Workflow 触发条件
Setup 首次部署,用户说"设置定时推送"、"部署开发者日报" 等
FetchNews 定时触发 / 用户主动要求整理新闻

Setup Workflow(自动部署)

由 agent 自动检测当前渠道和用户,无需手动填参数。

步骤

1. 检测渠道

从会话上下文获取当前渠道和用户:

channel: qqbot / telegram / discord / feishu ...
to:     用户ID / chatId / channelId

2. 创建 cron

openclaw cron add \
  --name "AI开发者日报" \
  --cron "0 8 * * *" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --agent main \
  --message "整理AI开发者日报" \
  --channel \x3C当前渠道> \
  --to \x3C当前用户> \
  --announce \
  --expect-final

3. 确认结果

✅ AI开发者日报已部署!

配置摘要:
- 时间:每天 08:00(北京时间)
- 渠道:\x3C渠道名>
- 投递:当前对话

明天早上 8 点自动推送第一期 👋

手动创建参考

如果需要在不同渠道部署,手动替换参数:

渠道 --channel --to
QQ 私聊 qqbot 用户 QQ 号
Telegram telegram chatId
Discord discord channelId
飞书 feishu chatId
openclaw cron add \
  --name "AI开发者日报" \
  --cron "0 8 * * *" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --agent main \
  --message "整理AI开发者日报" \
  --channel \x3C渠道> \
  --to \x3C目标> \
  --announce \
  --expect-final

查看状态

# 所有 cron 任务
openclaw cron list

# 单条详情
openclaw cron show \x3Cid>

# 运行记录
openclaw cron runs --id \x3Cid>

# 手动立即触发一次
openclaw cron run \x3Cid>

FetchNews Workflow(整理日报)

1. 新闻采集

搜索以下来源,获取最近 24 小时内的 AI 开发者相关新闻:

国际源:

  • Hacker News (news.ycombinator.com)
  • GitHub Trending (github.com/trending)
  • TechCrunch AI
  • The Verge AI
  • The Register
  • GitHub Blog / Changelog
  • Python / Node / Rust 等官方发布

中国源:

  • OSCHINA 开源资讯 (oschina.net/news)
  • 36氪 AI 相关
  • 机器之心、量子位
  • 知乎 AI 热点
  • 腾讯云/阿里云开发者社区

2. 筛选标准

只关注开发者真正关心的:

  • 模型发布(国际+国内)
  • 开源框架/工具更新
  • 编程语言新版本
  • IDE/DevOps 工具发布
  • AI 编程相关技术
  • 开发者生态大事

过滤掉:纯商业PR、股市行情、不相关的娱乐消费电子新闻。

3. 输出格式

每条新闻格式:

**N.** [来源] 标题
一句话摘要
🔗 [阅读原文](url)

4. 展开深度简报

用户回复编号后,执行:

  1. 用 web_fetch 抓取原文
  2. 提炼核心信息:做了什么、为什么重要、技术细节(如有)
  3. 控制在 200-300 字
  4. 推送深度简报给用户

自定义配置

可在 workspace 的 TOOLS.md 中添加偏好的新闻源或排除的站点。

安全使用建议
This skill appears safe for its stated purpose. Before enabling scheduled delivery, confirm that the cron target is the chat where you want the digest and remember to disable or remove the cron job if you stop using it.
功能分析
Type: OpenClaw Skill Name: ai-developer-daily Version: 1.2.0 The skill is a news aggregator designed to collect and summarize AI and developer news from reputable sources like Hacker News and GitHub. It utilizes the OpenClaw platform's built-in cron system ('openclaw cron add' in SKILL.md) to schedule daily updates and uses 'web_fetch' to retrieve article details. The instructions are transparent, align with the stated purpose, and do not exhibit signs of data exfiltration, malicious execution, or unauthorized persistence.
能力评估
Purpose & Capability
The stated purpose is to gather AI/developer news and optionally push it daily; the scheduled delivery capability is disclosed and aligned with that purpose.
Instruction Scope
The setup workflow auto-detects the current channel and recipient for the cron job, so users should confirm the destination before enabling it.
Install Mechanism
There is no install script or executable code in the provided artifacts; it is an instruction-only skill.
Credentials
The skill uses public news sources and article fetching for a news summary workflow, with no evidence of credential use, local private file access, or unrelated data sharing.
Persistence & Privilege
It can create a persistent OpenClaw cron schedule for daily delivery, which is disclosed and purpose-aligned but should be managed by the user.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-developer-daily
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-developer-daily 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.2.0
新增 Setup workflow:agent 自动检测渠道和用户,一句话完成部署。新增 FetchNews workflow 独立章节。保留手动创建参考
v1.1.0
修复:cron 创建命令改用 --session isolated + --message,支持 delivery 配置投递渠道
v1.0.0
Initial release: AI开发者日报,国际+中国新闻,支持编号回复展开详情
元数据
Slug ai-developer-daily
版本 1.2.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

AI开发者日报 是什么?

AI开发者日报 - 每天整理国际和中国AI/开发者新闻,国际在前、中国在后。支持编号回复展开详情。自动定时推送或用户主动触发。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 55 次。

如何安装 AI开发者日报?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-developer-daily」即可一键安装,无需额外配置。

AI开发者日报 是免费的吗?

是的,AI开发者日报 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

AI开发者日报 支持哪些平台?

AI开发者日报 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AI开发者日报?

由 Yikai Chen(@homer212416)开发并维护,当前版本 v1.2.0。

💬 留言讨论