Multi Search Engine
一个面向 Research 场景的 Agent 技能。原始说明:Multi search engine integration with 16 engines (7 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and Wolfra...
name: ai-market-research
version: 0.1.0
author: Chace
license: MIT
description: 整合 crawl4ai、trendradar、product-research 的全链路市场研究自动化技能
dependencies:
mcp: ["crawl4ai", "trendradar"]
skills: ["product-research"]
plugins: ["agentmemory", "vector-memory"]
categories: [research, automation, market-intelligence]
homepage: "https://github.com/yourusername/ai-market-research-skill"
整合 crawl4ai、trendradar、product-research 的全链路市场研究自动化
ai-market-research 是 OpenClaw 的组合技能,提供端到端的市场研究能力:
| 参数 | 类型 | 必填 | 说明 |
|------|------|------|------|
| topic | string | ✅ | 研究主题(产品名/行业/赛道) |
| depth | enum | ⭕ | 研究深度:quick(1小时)/standard(4小时)/deep(8小时+)|
| sources | array | ⭕ | 指定 crawl4ai 抓取的URL列表(不指定则自动发现)|
| output_format | enum | ⭕ | 输出格式:markdown/html/json(默认 markdown)|
| compare_previous | bool | ⭕ | 是否与历史研究对比(默认 true)|
research-report.md) - 结构化分析artifacts/) - 原始抓取内容、热度摘要、竞品表格graph LR
A[任务: 研究 X] --> B[crawl4ai 深度抓取]
A --> C[trendradar 热点聚合]
B --> D[product-research 分析引擎]
C --> D
D --> E[生成结构化报告]
E --> F[保存到 agentmemory]
F --> G[推送结果]
topic → timestamp → findings 索引链# 快速研究(1小时)
ai-market-research --topic "宇树科技机器人" --depth quick
# 深度研究(8小时+)
ai-market-research --topic "人形机器人赛道" --depth deep --compare_previous true
ai-market-research \
--topic "特斯拉FSD" \
--sources "https://tesla.com/fsd" "https:// electrek.co/tesla-fsd-review" \
--output_format markdown
必须已启动:
crawl4ai (localhost:11235)trendradar (localhost:3333)以下技能必须在 openclaw.json 中启用:
product-researchagentmemory (插件)vector-memory(可选,用于历史对比)AI_API_KEY - 用于 trendradar AI 分析(如果启用)OPENCLAW_WECHAT_TO - 微信推送目标(optional)| 深度 | 预计耗时 | crawl4ai 调用 | trendradar 调用 | LLM token 消耗 |
|------|----------|--------------|----------------|----------------|
| quick | ~1h | 5-10 URL | 1次(当日数据) | ~50k |
| standard | ~4h | 20-30 URL | 3天历史 + 每日增量 | ~200k |
| deep | ~8h+ | 50+ URL | 7天历史 + 全平台 | ~500k+ |
CRAWL4AI_JWT 环境变量uv run python -m mcp_server.server 正在运行agentmemory 插件已启用depth 或减少 sources 数量# 克隆到技能目录
git clone https://github.com/yourusername/ai-market-research-skill.git \
~/.openclaw/workspace/.agents/skills/ai-market-research
# 启用技能(添加到 openclaw.json)
# 重启网关
openclaw gateway restart
搜索 ai-market-research 并一键安装。
MIT © Chace