# ZCLAW Pipeline Template — 竞品分析报告 # 输入竞品名称和行业,自动生成结构化竞品分析报告 apiVersion: zclaw/v1 kind: Pipeline metadata: name: competitor-analysis-template displayName: 竞品分析报告 category: marketing industry: general description: 输入竞品名称和行业领域,自动生成包含产品对比、SWOT 分析和市场定位的分析报告 tags: - 竞品分析 - 市场 - 战略 icon: 📊 author: ZCLAW version: 1.0.0 annotations: is_template: true spec: inputs: - name: competitor_name type: string required: true label: 竞品名称 placeholder: 例如:Notion - name: industry type: string required: true label: 行业领域 placeholder: 例如:SaaS 协作工具 - name: focus_areas type: multi-select required: false label: 分析维度 default: - features - pricing - target_audience options: - features - pricing - target_audience - technology - marketing_strategy steps: - name: analyze-competitor action: llm_generate params: prompt: | 请对 {{competitor_name}}({{industry}}行业)进行竞品分析。 重点分析以下维度:{{focus_areas}} 输出格式: 1. 产品概述 2. 核心功能对比 3. 定价策略分析 4. 目标用户画像 5. SWOT 分析 6. 市场定位建议 model: default output: analysis_result