{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ai-trend-monitor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ai-trend-monitor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "ai_trend_monitor.js",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ai-trend-monitor",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "AI Trend Monitor",
        "body": "监控 AI 市场趋势和技术前沿，支持实时重大新闻推送 + 定时汇总推送。"
      },
      {
        "title": "功能",
        "body": "多渠道监控：GitHub、Reddit、Twitter/X、小红书、新闻\n智能 URL 提取：自动提取具体帖子/文章 URL（非首页）\n重大新闻实时推送：检测到重大新闻立即推送\n定时汇总：每天 9:00、13:00、19:00 定时推送\n飞书卡片格式：分渠道表格，完整文本，可跳转链接"
      },
      {
        "title": "安装",
        "body": "# 克隆到 skills 目录\ngit clone <repo-url> ~/.openclaw/skills/ai_trend_monitor\n\n# 安装依赖\ncd ~/.openclaw/skills/ai_trend_monitor\nnpm install"
      },
      {
        "title": "配置",
        "body": "编辑 config.js：\n\nmodule.exports = {\n  // 飞书 Webhook\n  webhooks: {\n    market: 'https://open.feishu.cn/open-apis/bot/v2/hook/xxx',\n    tech: 'https://open.feishu.cn/open-apis/bot/v2/hook/xxx'\n  },\n  \n  // 监控渠道\n  channels: ['GitHub', 'Reddit', 'Twitter', '小红书', '新闻'],\n  \n  // 推送时间\n  schedule: {\n    morning: '0 9 * * *',    // 9:00\n    noon: '0 13 * * *',      // 13:00\n    evening: '0 19 * * *'    // 19:00\n  },\n  \n  // 重大新闻判定标准\n  majorNewsCriteria: {\n    funding: 100000000,      // 1亿美元\n    stockChange: 5,          // 股价涨跌5%\n    keyPeople: ['Sam Altman', 'Elon Musk', 'Andrej Karpathy'],\n    keyCompanies: ['OpenAI', 'Google', 'Anthropic', 'Meta', 'xAI']\n  }\n};"
      },
      {
        "title": "手动运行",
        "body": "node ai_trend_monitor.js"
      },
      {
        "title": "定时任务",
        "body": "使用 OpenClaw cron：\n\n{\n  \"jobs\": [\n    {\n      \"name\": \"ai-trend-morning\",\n      \"schedule\": \"0 9 * * *\",\n      \"command\": \"node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js\"\n    },\n    {\n      \"name\": \"ai-trend-noon\",\n      \"schedule\": \"0 13 * * *\",\n      \"command\": \"node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js\"\n    },\n    {\n      \"name\": \"ai-trend-evening\",\n      \"schedule\": \"0 19 * * *\",\n      \"command\": \"node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js\"\n    }\n  ]\n}"
      },
      {
        "title": "消息格式",
        "body": "飞书卡片消息，按渠道分组：\n\n渠道标题概述时间影响分析链接GitHubxxxxxx2026-02-19 08:00xxx[查看]Redditxxxxxx2026-02-19 10:30xxx[查看]"
      },
      {
        "title": "依赖",
        "body": "Node.js >= 18\nOpenClaw CLI（用于定时任务）\nkimi_search API（用于实时搜索）"
      },
      {
        "title": "版本",
        "body": "v1.0.0"
      },
      {
        "title": "作者",
        "body": "小赵"
      },
      {
        "title": "License",
        "body": "MIT"
      }
    ],
    "body": "AI Trend Monitor\n\n监控 AI 市场趋势和技术前沿，支持实时重大新闻推送 + 定时汇总推送。\n\n功能\n多渠道监控：GitHub、Reddit、Twitter/X、小红书、新闻\n智能 URL 提取：自动提取具体帖子/文章 URL（非首页）\n重大新闻实时推送：检测到重大新闻立即推送\n定时汇总：每天 9:00、13:00、19:00 定时推送\n飞书卡片格式：分渠道表格，完整文本，可跳转链接\n安装\n# 克隆到 skills 目录\ngit clone <repo-url> ~/.openclaw/skills/ai_trend_monitor\n\n# 安装依赖\ncd ~/.openclaw/skills/ai_trend_monitor\nnpm install\n\n配置\n\n编辑 config.js：\n\nmodule.exports = {\n  // 飞书 Webhook\n  webhooks: {\n    market: 'https://open.feishu.cn/open-apis/bot/v2/hook/xxx',\n    tech: 'https://open.feishu.cn/open-apis/bot/v2/hook/xxx'\n  },\n  \n  // 监控渠道\n  channels: ['GitHub', 'Reddit', 'Twitter', '小红书', '新闻'],\n  \n  // 推送时间\n  schedule: {\n    morning: '0 9 * * *',    // 9:00\n    noon: '0 13 * * *',      // 13:00\n    evening: '0 19 * * *'    // 19:00\n  },\n  \n  // 重大新闻判定标准\n  majorNewsCriteria: {\n    funding: 100000000,      // 1亿美元\n    stockChange: 5,          // 股价涨跌5%\n    keyPeople: ['Sam Altman', 'Elon Musk', 'Andrej Karpathy'],\n    keyCompanies: ['OpenAI', 'Google', 'Anthropic', 'Meta', 'xAI']\n  }\n};\n\n使用\n手动运行\nnode ai_trend_monitor.js\n\n定时任务\n\n使用 OpenClaw cron：\n\n{\n  \"jobs\": [\n    {\n      \"name\": \"ai-trend-morning\",\n      \"schedule\": \"0 9 * * *\",\n      \"command\": \"node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js\"\n    },\n    {\n      \"name\": \"ai-trend-noon\",\n      \"schedule\": \"0 13 * * *\",\n      \"command\": \"node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js\"\n    },\n    {\n      \"name\": \"ai-trend-evening\",\n      \"schedule\": \"0 19 * * *\",\n      \"command\": \"node ~/.openclaw/skills/ai_trend_monitor/ai_trend_monitor.js\"\n    }\n  ]\n}\n\n消息格式\n\n飞书卡片消息，按渠道分组：\n\n渠道\t标题\t概述\t时间\t影响分析\t链接\nGitHub\txxx\txxx\t2026-02-19 08:00\txxx\t[查看]\nReddit\txxx\txxx\t2026-02-19 10:30\txxx\t[查看]\n依赖\nNode.js >= 18\nOpenClaw CLI（用于定时任务）\nkimi_search API（用于实时搜索）\n版本\n\nv1.0.0\n\n作者\n\n小赵\n\nLicense\n\nMIT"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wuyuyang001-oss/ai-trend-monitor",
    "publisherUrl": "https://clawhub.ai/wuyuyang001-oss/ai-trend-monitor",
    "owner": "wuyuyang001-oss",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}