Install
openclaw skills install geo-analyzerAnalyzes a brand’s presence and sentiment in LLM-generated industry recommendations, extracting mention context and competitor comparisons.
openclaw skills install geo-analyzer一个用于测试品牌或产品在大模型中 GEO(生成式引擎优化) 表现的分析技能。
本 Skill 通过两阶段 LLM 调用流程,自动化地检测目标品牌在 AI 推荐场景中的曝光情况:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
brand_name | string | ✅ | 需要验证的品牌或产品名(如 CoolTrade) |
category_keyword | string | ✅ | 行业或痛点关键词(如 数字货币高频套利系统) |
{
"mentioned": true,
"sentiment": "positive",
"context": "...提及品牌的上下文句子...",
"competitors_mentioned": ["竞品A", "竞品B"]
}
| 字段 | 类型 | 说明 |
|---|---|---|
mentioned | boolean | 目标品牌是否在推荐结果中被提及 |
sentiment | string | 情感倾向:positive / negative / neutral / none |
context | string | null | 提及品牌时的具体上下文句子,未提及则为 null |
competitors_mentioned | array | 被模型主动推荐的竞品品牌列表 |
请确保在运行环境中配置了 DEEPSEEK_API_KEY 环境变量:
export DEEPSEEK_API_KEY="your_deepseek_api_key_here"
pip install -r requirements.txt
python3 main.py --brand "CoolTrade" --category "数字货币高频套利系统"
当用户提出以下类型的请求时,触发本技能:
执行步骤:
brand_name 和 category_keyword 两个参数。main.py 执行两阶段分析流程(所有 API 调用已封装在脚本内)。api.deepseek.com