← Back to Skills Marketplace
bettermen

网站开发辅助决策

by bettermen · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
44
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install website-decision
Description
网站开发辅助决策系统 — 输入产品类型和名称,自动分析竞品/市场/流量/用户/商业模式/成本/推广,生成多维度可行性评估HTML报告。Triggers: 网站决策, 网站可行性, 网站评估, 网站能不能做, 网站分析报告, website decision, 建站评估, 网站调研.
README (SKILL.md)

网站开发辅助决策助手

概述

本技能为网站开发提供专业的多维度可行性决策分析。用户只需提供产品类型和产品名称,系统自动完成市场调研、竞品分析、流量评估,生成专业的可视化HTML决策报告。

核心能力

  1. 搜索热度趋势分析 - 通过搜索引擎数据获取关键词热度与趋势
  2. 竞品数量与格局分析 - 搜索同类网站数量、头部竞品信息、市场饱和度
  3. 行业规模与趋势 - 获取最新行业报告数据、市场规模、增长率
  4. 流量潜力评估 - 分析搜索量、SEO机会、自然流量预估
  5. 用户画像分析 - 目标用户特征、需求痛点、使用场景
  6. 商业模式建议 - 基于品类特征推荐最优变现模式
  7. 成本估算 - 域名/服务器/开发/运维/推广全链路成本预估
  8. 推广策略建议 - SEO、内容营销、社交媒体、广告投放等路径
  9. 技术选型与避坑 - 前端/后端/部署技术栈推荐、审核要点
  10. 综合可行性评分 - 多维度加权评分,给出明确决策建议

使用方式

触发词 + 产品类型 + 产品名称

示例:

  • "网站决策:做一个AI写作工具网站"
  • "帮我评估做在线教育平台网站可行吗"
  • "分析宠物社交网站的可行性"
  • "网站可行性分析:跨境电商独立站"

工作流程

第一阶段:数据采集(并行搜索)

使用 WebSearch 工具并行搜索以下维度:

  1. 搜索热度:搜索 {产品关键词} 搜索引擎 热度 趋势 搜索量
  2. 竞品分析:搜索 {产品方向} 网站 竞品 排行榜 头部玩家
  3. 行业数据:搜索 {产品方向} 市场规模 增长率 2025 2026
  4. 商业模式:搜索 {产品方向} 网站 商业模式 变现 盈利
  5. 推广方法:搜索 {产品方向} 网站推广 SEO 获客 运营
  6. 技术方案:搜索 {产品方向} 网站开发 技术栈 成本

第二阶段:深度分析(可选WebFetch)

对关键搜索结果中数据丰富的页面进行 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报告包含以下章节:

  1. 封面页 - 产品名称、产品类型、评估时间、总体评分
  2. 执行摘要 - 核心结论与建议(可行/谨慎/暂缓)
  3. 搜索热度分析 - 搜索量级趋势、相关关键词、用户需求强度
  4. 竞品格局分析 - 竞品数量、头部玩家、市场饱和度、差异化机会
  5. 行业市场分析 - 市场规模、增长率、政策环境
  6. 用户画像分析 - 目标用户特征、需求痛点、使用场景
  7. 流量潜力评估 - 搜索流量、SEO机会、自然增长预估
  8. 商业模式建议 - 推荐变现模式、收入预估
  9. 成本估算 - 域名/服务器/开发/运维/推广全链路
  10. 推广策略 - 冷启动方案、SEO策略、内容营销、投放建议
  11. 技术选型指南 - 前端/后端/部署方案、避坑要点
  12. 风险提示 - 政策风险、竞争风险、技术风险、运营风险
  13. 综合评分与决策 - 加权评分矩阵、最终建议与行动计划

评分模型

基于以下6个维度加权评分(满分100):

维度 权重 评估标准
搜索热度 25% 关键词搜索量、趋势方向、用户需求强度
竞争格局 20% 竞品数量、头部垄断程度、差异化空间
市场前景 20% 行业规模、增长率、政策环境
变现能力 15% 商业模式清晰度、ARPU潜力、付费意愿
开发可行性 10% 技术难度、开发成本、维护复杂度
流量获取 10% SEO潜力、自然流量、内容营销空间

评分等级:

  • ≥80分:✅ 强烈建议做 — 市场机会明确,竞争适中
  • 65-79分:🟡 谨慎推进 — 有机会但需差异化策略
  • 50-64分:⚠️ 暂缓观望 — 需先验证核心假设
  • \x3C50分:❌ 不建议做 — 市场风险过高

注意事项

  1. 所有数据基于公开信息搜索,时效性可能有限
  2. 搜索量数据为估算值,非官方精确数据
  3. 竞品数量基于搜索结果统计,可能有遗漏
  4. 最终决策需结合团队实际资源与能力判断
  5. 网站开发周期和成本高于小程序,评估需更保守
Usage Guidance
Install only if you want an agent to perform public web research and create local HTML feasibility reports. Choose a clear output filename, avoid overwriting existing files, and review generated reports before opening them if they include content copied from untrusted web pages.
Capability Assessment
Purpose & Capability
The stated purpose is to research website feasibility using public web searches and produce a structured report; the artifacts match that purpose.
Instruction Scope
Some trigger examples are conversational and could invoke the skill during broad feasibility questions, but the resulting behavior is still aligned with the skill's stated purpose.
Install Mechanism
Installation is a manual copy into a skills directory; there is no install-time execution, dependency installation, credential setup, or background service.
Credentials
The skill uses WebSearch/WebFetch-style public research and Python report generation, which is proportionate; the generated HTML interpolates provided content directly, so users should avoid feeding untrusted raw HTML.
Persistence & Privilege
The report generator writes an HTML file to a user-specified path and can overwrite existing files if reused carelessly, but this file creation is central to the skill and is not hidden.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install website-decision
  3. After installation, invoke the skill by name or use /website-decision
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
v1.0.0 初始版本:11章节HTML报告、6维加权评分、竞品分析+用户画像+商业模式+成本估算+推广策略全链路覆盖
Metadata
Slug website-decision
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 网站开发辅助决策?

网站开发辅助决策系统 — 输入产品类型和名称,自动分析竞品/市场/流量/用户/商业模式/成本/推广,生成多维度可行性评估HTML报告。Triggers: 网站决策, 网站可行性, 网站评估, 网站能不能做, 网站分析报告, website decision, 建站评估, 网站调研. It is an AI Agent Skill for Claude Code / OpenClaw, with 44 downloads so far.

How do I install 网站开发辅助决策?

Run "/install website-decision" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 网站开发辅助决策 free?

Yes, 网站开发辅助决策 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 网站开发辅助决策 support?

网站开发辅助决策 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 网站开发辅助决策?

It is built and maintained by bettermen (@bettermen); the current version is v1.0.0.

💬 Comments