Install
openclaw skills install ai-trend-monitor监控 GitHub、Reddit、Twitter 等多渠道 AI 趋势与重大新闻,支持实时推送和每日定时汇总飞书卡片。
openclaw skills install ai-trend-monitor监控 AI 市场趋势和技术前沿,支持实时重大新闻推送 + 定时汇总推送。
# 克隆到 skills 目录
git clone <repo-url> ~/.openclaw/skills/ai_trend_monitor
# 安装依赖
cd ~/.openclaw/skills/ai_trend_monitor
npm install
编辑 config.js:
module.exports = {
// 飞书 Webhook
webhooks: {
market: 'https://open.feishu.cn/open-apis/bot/v2/hook/xxx',
tech: 'https://open.feishu.cn/open-apis/bot/v2/hook/xxx'
},
// 监控渠道
channels: ['GitHub', 'Reddit', 'Twitter', '小红书', '新闻'],
// 推送时间
schedule: {
morning: '0 9 * * *', // 9:00
noon: '0 13 * * *', // 13:00
evening: '0 19 * * *' // 19:00
},
// 重大新闻判定标准
majorNewsCriteria: {
funding: 100000000, // 1亿美元
stockChange: 5, // 股价涨跌5%
keyPeople: ['Sam Altman', 'Elon Musk', 'Andrej Karpathy'],
keyCompanies: ['OpenAI', 'Google', 'Anthropic', 'Meta', 'xAI']
}
};
node ai_trend_monitor.js
使用 OpenClaw cron:
{
"jobs": [
{
"name": "ai-trend-morning",
"schedule": "0 9 * * *",
"command": "node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js"
},
{
"name": "ai-trend-noon",
"schedule": "0 13 * * *",
"command": "node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js"
},
{
"name": "ai-trend-evening",
"schedule": "0 19 * * *",
"command": "node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js"
}
]
}
飞书卡片消息,按渠道分组:
| 渠道 | 标题 | 概述 | 时间 | 影响分析 | 链接 |
|---|---|---|---|---|---|
| GitHub | xxx | xxx | 2026-02-19 08:00 | xxx | [查看] |
| xxx | xxx | 2026-02-19 10:30 | xxx | [查看] |
v1.0.0
小赵
MIT