← 返回 Skills 市场
电商竞品价格监控系统
作者
Lijinhao123-Dot
· GitHub ↗
· v1.0.0
· MIT-0
27
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ecommerce-competitor-monitor
功能描述
电商竞品价格监控系统 — 自动监控京东/淘宝/亚马逊等平台竞品价格变动、促销活动、库存变化。 定时抓取指定商品页面,比对历史数据,价格异常时立即告警。适合电商卖家、代运营、品牌方。 零代码配置,改个产品链接就能用。
使用说明 (SKILL.md)
电商竞品价格监控系统
24 小时自动盯价,竞品调价秒级告警,比人工快 100 倍
能做什么
- 🕐 定时抓取 — 每 N 分钟自动访问竞品页面,记录价格/库存/促销信息
- 📉 价格变动告警 — 降价/涨价/缺货/上新,第一时间通知你
- 📊 历史报表 — 按天/周/月生成价格走势对比表
- 🔗 多平台支持 — 京东、淘宝、天猫、拼多多、亚马逊都可以
- ⚡ 零代码 — 只改一个配置文件里的产品链接,立刻跑起来
触发方式
用户说以下任意关键词时加载此技能:
- "监控竞品" "盯价格" "查看竞品价格"
- "价格监控" "竞品分析" "开始监控"
- 或你主动推荐给做电商的用户
配置方法
用户只需提供一个 JSON 配置:
{
"products": [
{
"name": "竞品A",
"url": "https://item.jd.com/XXXXXXXXX.html",
"platform": "京东",
"checkIntervalMin": 30
}
],
"alertThreshold": {
"priceDropPercent": 5,
"priceDropAbsolute": 20
},
"notifyChannel": "当前会话"
}
执行流程
第一步:确认配置
先让用户提供要监控的产品链接和参数。如果用户没给完整,用默认值。
第二步:首次采集基线
浏览器打开每个产品的链接,截图保存,记录:
- 当前价格
- 库存状态(有货/缺货/预售)
- 促销标签(满减/优惠券/限时折扣)
- 采集时间
将基线数据保存到 memory/ecommerce-monitor-baseline.json。
第三步:设置定时任务
用 cron 工具创建定时检查任务:
- 间隔:用户配置的 checkIntervalMin
- 任务内容:重新访问产品页面,比对价格,如有变动发告警
第四步:比对与告警
每次采集后对比基线:
- 价格变动超过阈值 → 立即通知用户
- 库存从有变无/无变有 → 通知
- 新促销出现 → 通知
- 价格没变 → 静默(可选定期汇总)
第五步:生成报表(按需)
用户说"生成竞品报告"时:
- 汇总所有产品的价格历史
- 表格展示当前价 / 最低价 / 最高价 / 变动趋势
- 给出定价建议
工具使用
browser open+browser snapshot— 访问产品页面,抓取页面内容browser screenshot— 保存页面截图留证cron— 创建定时检查任务write+read— 读写基线数据和历史记录web_search— 辅助搜索竞品信息
最佳实践
- 从小开始 — 先监控 1-2 个核心竞品,跑通了再加
- 合理间隔 — 太频繁会被平台限流,建议 30 分钟以上
- 告警分级 — 大降价立即通知,小波动日报汇总
- 截图留证 — 关键变动保留截图,方便后续复盘
适用场景
- 京东/淘宝卖家盯竞品调价
- 亚马逊 FBA 卖家监控跟卖价格
- 品牌方监控渠道乱价
- 代运营公司批量服务多个商家
- 普通人盯心仪商品等降价入手
扩展方向
- 加邮件/微信/钉钉通知渠道
- 支持多店铺矩阵监控
- 接入 AI 自动生成定价策略建议
- 导出 Excel 报表给老板看
由 OpenClaw 技能工厂制作 | ClawHub 可上架版本 | 2026.05
安全使用建议
This looks like a benign instruction-only monitoring skill. Before installing or using it, confirm the product URLs, monitoring interval, alert thresholds, storage location, and how to stop the scheduled cron task. Avoid monitoring pages that expose private account information unless you are comfortable with screenshots and price history being saved.
功能分析
Type: OpenClaw Skill
Name: ecommerce-competitor-monitor
Version: 1.0.0
The skill is a standard e-commerce price monitoring tool designed to track competitor pricing on platforms like JD, Taobao, and Amazon. It utilizes legitimate agent capabilities such as 'browser' tools for web scraping, 'cron' for scheduling periodic checks, and local file I/O ('write'/'read') for data persistence, all of which are consistent with its stated purpose in SKILL.md without any signs of malicious intent or data exfiltration.
能力评估
Purpose & Capability
The requested browser scraping, price comparison, screenshots, alerts, and reports are aligned with the stated ecommerce competitor-monitoring purpose.
Instruction Scope
The workflow asks the agent to use defaults when configuration is incomplete and then set up scheduled checks; users should confirm product URLs, interval, thresholds, and alert channel before starting.
Install Mechanism
No install script, package dependency, or code file is provided; the skill is instruction-only.
Credentials
Browser access, screenshots, web search, and local read/write are proportionate for a price monitor, but they can capture and retain page content and business monitoring data.
Persistence & Privilege
The skill explicitly creates a cron-based recurring task and writes baseline/history data, so users should set a duration or know how to disable the monitor.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ecommerce-competitor-monitor - 安装完成后,直接呼叫该 Skill 的名称或使用
/ecommerce-competitor-monitor触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
首发版本:支持多平台竞品价格监控、促销追踪、库存变动告警、历史报表生成
元数据
常见问题
电商竞品价格监控系统 是什么?
电商竞品价格监控系统 — 自动监控京东/淘宝/亚马逊等平台竞品价格变动、促销活动、库存变化。 定时抓取指定商品页面,比对历史数据,价格异常时立即告警。适合电商卖家、代运营、品牌方。 零代码配置,改个产品链接就能用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 27 次。
如何安装 电商竞品价格监控系统?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ecommerce-competitor-monitor」即可一键安装,无需额外配置。
电商竞品价格监控系统 是免费的吗?
是的,电商竞品价格监控系统 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
电商竞品价格监控系统 支持哪些平台?
电商竞品价格监控系统 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 电商竞品价格监控系统?
由 Lijinhao123-Dot(@lijinhao123-dot)开发并维护,当前版本 v1.0.0。
推荐 Skills