# Send AI Trend Monitor to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ai-trend-monitor",
    "name": "AI Trend Monitor",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wuyuyang001-oss/ai-trend-monitor",
    "canonicalUrl": "https://clawhub.ai/wuyuyang001-oss/ai-trend-monitor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ai-trend-monitor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-trend-monitor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "ai_trend_monitor.js",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ai-trend-monitor"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ai-trend-monitor",
    "downloadUrl": "https://openagent3.xyz/downloads/ai-trend-monitor",
    "agentUrl": "https://openagent3.xyz/skills/ai-trend-monitor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ai-trend-monitor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ai-trend-monitor/agent.md"
  }
}
```
## Documentation

### AI Trend Monitor

监控 AI 市场趋势和技术前沿，支持实时重大新闻推送 + 定时汇总推送。

### 功能

多渠道监控：GitHub、Reddit、Twitter/X、小红书、新闻
智能 URL 提取：自动提取具体帖子/文章 URL（非首页）
重大新闻实时推送：检测到重大新闻立即推送
定时汇总：每天 9:00、13:00、19:00 定时推送
飞书卡片格式：分渠道表格，完整文本，可跳转链接

### 安装

# 克隆到 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"
    }
  ]
}

### 消息格式

飞书卡片消息，按渠道分组：

渠道标题概述时间影响分析链接GitHubxxxxxx2026-02-19 08:00xxx[查看]Redditxxxxxx2026-02-19 10:30xxx[查看]

### 依赖

Node.js >= 18
OpenClaw CLI（用于定时任务）
kimi_search API（用于实时搜索）

### 版本

v1.0.0

### 作者

小赵

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wuyuyang001-oss
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ai-trend-monitor)
- [Send to Agent page](https://openagent3.xyz/skills/ai-trend-monitor/agent)
- [JSON manifest](https://openagent3.xyz/skills/ai-trend-monitor/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ai-trend-monitor/agent.md)
- [Download page](https://openagent3.xyz/downloads/ai-trend-monitor)