Install
openclaw skills install website-decision网站开发辅助决策系统 — 输入产品类型和名称,自动分析竞品/市场/流量/用户/商业模式/成本/推广,生成多维度可行性评估HTML报告。Triggers: 网站决策, 网站可行性, 网站评估, 网站能不能做, 网站分析报告, website decision, 建站评估, 网站调研.
openclaw skills install website-decision本技能为网站开发提供专业的多维度可行性决策分析。用户只需提供产品类型和产品名称,系统自动完成市场调研、竞品分析、流量评估,生成专业的可视化HTML决策报告。
触发词 + 产品类型 + 产品名称
示例:
使用 WebSearch 工具并行搜索以下维度:
{产品关键词} 搜索引擎 热度 趋势 搜索量{产品方向} 网站 竞品 排行榜 头部玩家{产品方向} 市场规模 增长率 2025 2026{产品方向} 网站 商业模式 变现 盈利{产品方向} 网站推广 SEO 获客 运营{产品方向} 网站开发 技术栈 成本对关键搜索结果中数据丰富的页面进行 WebFetch 获取详细信息。
运行报告生成脚本生成HTML报告:
python {baseDir}/scripts/report_generator.py \
--name "产品名称" \
--category "产品类型" \
--output "output_path.html" \
--scores '{"search_heat": 75, "competition": 65, "market": 80, "monetization": 70, "dev_feasibility": 85, "traffic": 60}' \
--search-heat '{"score": 75, "trend": "上升", "volume": "月均1万+", "detail": "..."}' \
--competitors '{"count": 120, "top3": [...], "saturation": "中等", "detail": "..."}' \
--industry '{"market_size": "500亿", "growth": "25%", "detail": "..."}' \
--traffic '{"search_volume": "中高", "seo_difficulty": "中等", "detail": "..."}' \
--user-analysis '{"target_users": "...", "pain_points": [...], "detail": "..."}' \
--business-model '{"recommend": [...], "detail": "..."}' \
--cost '{"domain": "50-100元/年", "hosting": "300-3000元/月", "development": "5-30万", "ops": "1000-5000元/月", "promotion": "1-10万/月", "detail": "..."}' \
--promotion '{"strategies": [...], "detail": "..."}' \
--development '{"tech_stack": "...", "tips": [...], "detail": "..."}' \
--risks '{"items": [...]}'
或者直接在Python中调用:
import json, sys
sys.path.insert(0, '{baseDir}/scripts')
from report_generator import generate_report
data = {
"name": "产品名称",
"category": "产品类型",
"scores": {...},
"search_heat": {...},
"competitors": {...},
"industry": {...},
"traffic": {...},
"user_analysis": {...},
"business_model": {...},
"cost": {...},
"promotion": {...},
"development": {...},
"risks": {...}
}
html = generate_report(data)
with open('output.html', 'w', encoding='utf-8') as f:
f.write(html)
生成的HTML报告包含以下章节:
基于以下6个维度加权评分(满分100):
| 维度 | 权重 | 评估标准 |
|---|---|---|
| 搜索热度 | 25% | 关键词搜索量、趋势方向、用户需求强度 |
| 竞争格局 | 20% | 竞品数量、头部垄断程度、差异化空间 |
| 市场前景 | 20% | 行业规模、增长率、政策环境 |
| 变现能力 | 15% | 商业模式清晰度、ARPU潜力、付费意愿 |
| 开发可行性 | 10% | 技术难度、开发成本、维护复杂度 |
| 流量获取 | 10% | SEO潜力、自然流量、内容营销空间 |
评分等级: