← Back to Skills Marketplace
homer212416

AI开发者日报

by Yikai Chen · GitHub ↗ · v1.2.0 · MIT-0
cross-platform ✓ Security Clean
55
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install ai-developer-daily
Description
AI开发者日报 - 每天整理国际和中国AI/开发者新闻,国际在前、中国在后。支持编号回复展开详情。自动定时推送或用户主动触发。
README (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 中添加偏好的新闻源或排除的站点。

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-developer-daily
  3. After installation, invoke the skill by name or use /ai-developer-daily
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.2.0
新增 Setup workflow:agent 自动检测渠道和用户,一句话完成部署。新增 FetchNews workflow 独立章节。保留手动创建参考
v1.1.0
修复:cron 创建命令改用 --session isolated + --message,支持 delivery 配置投递渠道
v1.0.0
Initial release: AI开发者日报,国际+中国新闻,支持编号回复展开详情
Metadata
Slug ai-developer-daily
Version 1.2.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is AI开发者日报?

AI开发者日报 - 每天整理国际和中国AI/开发者新闻,国际在前、中国在后。支持编号回复展开详情。自动定时推送或用户主动触发。 It is an AI Agent Skill for Claude Code / OpenClaw, with 55 downloads so far.

How do I install AI开发者日报?

Run "/install ai-developer-daily" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is AI开发者日报 free?

Yes, AI开发者日报 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does AI开发者日报 support?

AI开发者日报 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created AI开发者日报?

It is built and maintained by Yikai Chen (@homer212416); the current version is v1.2.0.

💬 Comments