{
  "schemaVersion": "1.0",
  "item": {
    "slug": "stock-monitor",
    "name": "股票价格监控",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/shengbinxu/stock-monitor",
    "canonicalUrl": "https://clawhub.ai/shengbinxu/stock-monitor",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/stock-monitor",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=stock-monitor",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/futu_stocks_monitor.py",
      "scripts/stocks_monitor.py",
      "scripts/stocks_rebalance_monitor.py"
    ],
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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/stock-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/stock-monitor",
    "agentPageUrl": "https://openagent3.xyz/skills/stock-monitor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stock-monitor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stock-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": "股票价格监控",
        "body": "实时监控多只股票价格，当波动超过阈值时自动提醒。"
      },
      {
        "title": "1. 配置股票列表",
        "body": "创建配置文件 ~/.openclaw/workspace/memory/stocks_config.json：\n\n{\n  \"stocks\": {\n    \"贵州茅台\": {\"symbol\": \"600519.SS\", \"base_price\": 1600.0, \"currency\": \"¥\"},\n    \"腾讯控股\": {\"symbol\": \"0700.HK\", \"base_price\": 512.0, \"currency\": \"HK$\"},\n    \"拼多多\": {\"symbol\": \"PDD\", \"base_price\": 120.0, \"currency\": \"$\"}\n  }\n}\n\n配置说明：\n\nsymbol: Yahoo Finance 股票代码\n\nA股: 600519.SS (茅台)\n港股: 0700.HK (腾讯)\n美股: PDD (拼多多), AAPL (苹果)\n\n\nbase_price: 基准价（昨日收盘或参考价）\ncurrency: 货币符号"
      },
      {
        "title": "2. 运行监控",
        "body": "python3 ~/.openclaw/skills/stock-monitor/scripts/stocks_monitor.py"
      },
      {
        "title": "3. 设置定时任务",
        "body": "# 每5分钟检查一次\nopenclaw cron add --name \"股票监控\" --cron \"*/5 * * * *\" --tz \"Asia/Shanghai\" --message \"运行 python3 ~/.openclaw/workspace/skills/stock-monitor/scripts/stocks_monitor.py 并把输出发给我\" --channel discord"
      },
      {
        "title": "预警规则",
        "body": "首次预警: 涨跌超过 2%\n续警: 同一天内，再波动超过 1%\n重置: 新一天自动重置基准价为前一天收盘价"
      },
      {
        "title": "常用股票代码",
        "body": "股票港股代码美股代码腾讯控股0700.HKTCEHY阿里巴巴9988.HKBABA美团3690.HKMPNG小米1810.HKXI茅台-600519.SS"
      },
      {
        "title": "状态文件",
        "body": "脚本会自动在 ~/.openclaw/workspace/memory/stocks_alert.json 保存监控状态，包括是否已预警、预警日期等。"
      }
    ],
    "body": "股票价格监控\n\n实时监控多只股票价格，当波动超过阈值时自动提醒。\n\n快速开始\n1. 配置股票列表\n\n创建配置文件 ~/.openclaw/workspace/memory/stocks_config.json：\n\n{\n  \"stocks\": {\n    \"贵州茅台\": {\"symbol\": \"600519.SS\", \"base_price\": 1600.0, \"currency\": \"¥\"},\n    \"腾讯控股\": {\"symbol\": \"0700.HK\", \"base_price\": 512.0, \"currency\": \"HK$\"},\n    \"拼多多\": {\"symbol\": \"PDD\", \"base_price\": 120.0, \"currency\": \"$\"}\n  }\n}\n\n\n配置说明：\n\nsymbol: Yahoo Finance 股票代码\nA股: 600519.SS (茅台)\n港股: 0700.HK (腾讯)\n美股: PDD (拼多多), AAPL (苹果)\nbase_price: 基准价（昨日收盘或参考价）\ncurrency: 货币符号\n2. 运行监控\npython3 ~/.openclaw/skills/stock-monitor/scripts/stocks_monitor.py\n\n3. 设置定时任务\n# 每5分钟检查一次\nopenclaw cron add --name \"股票监控\" --cron \"*/5 * * * *\" --tz \"Asia/Shanghai\" --message \"运行 python3 ~/.openclaw/workspace/skills/stock-monitor/scripts/stocks_monitor.py 并把输出发给我\" --channel discord\n\n预警规则\n首次预警: 涨跌超过 2%\n续警: 同一天内，再波动超过 1%\n重置: 新一天自动重置基准价为前一天收盘价\n常用股票代码\n股票\t港股代码\t美股代码\n腾讯控股\t0700.HK\tTCEHY\n阿里巴巴\t9988.HK\tBABA\n美团\t3690.HK\tMPNG\n小米\t1810.HK\tXI\n茅台\t-\t600519.SS\n状态文件\n\n脚本会自动在 ~/.openclaw/workspace/memory/stocks_alert.json 保存监控状态，包括是否已预警、预警日期等。"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/shengbinxu/stock-monitor",
    "publisherUrl": "https://clawhub.ai/shengbinxu/stock-monitor",
    "owner": "shengbinxu",
    "version": "1.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/stock-monitor",
    "downloadUrl": "https://openagent3.xyz/downloads/stock-monitor",
    "agentUrl": "https://openagent3.xyz/skills/stock-monitor/agent",
    "manifestUrl": "https://openagent3.xyz/skills/stock-monitor/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/stock-monitor/agent.md"
  }
}