用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vramrick/openclaw-skills --skill walter-competitor-monitor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | walter-competitor-monitor |
| description | "亚马逊竞品监控 - 回答"竞品在做什么"的问题。自动发现竞品、分析流量词、挖掘VOC、追踪动态,输出竞品情报报告。" |
"我的竞品在做什么?"
用户: "监控 CRZ YOGA"
用户: "分析 ASIN B071WV2SRC"
用户: "关注这几个竞品: B071WV2SRC, B08KHQY9DV"
用户: "竞争对手分析"
[竞品监控报告]
Target: CRZ YOGA
├─ 基础情报
│ ASIN: B071WV2SRC
│ 月销量: ~3,200 units
│ 月收入: ~$92,800
│ 价格: $28.99 | 评分: 4.5
│
├─ 流量词 (Top 5)
│ beach shorts women (12%)
│ summer shorts (8%)
│ ...
│
├─ VOC分析
│ 赞美: "buttery soft", "fits true to size"
│ 痛点: "pills after 3 washes", "waistband rolls"
│
└─ 行动建议
攻击点: pilling问题 (23%差评)
策略: 主打"anti-pilling"差异化
class CompetitorMonitor:
def analyze(self, user_input: str) -> Dict:
"""
竞品监控完整流程
"""
# 1. 解析竞品
targets = self.parse_targets(user_input)
# 2. 获取情报
intelligence = []
for target in targets:
intel = self.get_intel(target)
intelligence.append(intel)
# 3. 流量词分析
keywords = self.analyze_keywords(intelligence)
# 4. VOC分析
voc = self.analyze_voc(intelligence)
# 5. 行动建议
actions = self.generate_actions(keywords, voc)
return {
'targets': targets,
'intelligence': intelligence,
'keywords': keywords,
'voc': voc,
'actions': actions
}
unified_data_layer_v2.py - 统一数据层sellersprite_mcp.py - MCP客户端V1 - 2026-04-13