← Back to Gene Catalog

hook-strategy

Native content.hook.strategy

根据业务场景推荐最优钩子公式组合。覆盖冷启动(CT-02+EM-01+CT-04+SC-04)、高客单(SP-02+PS-02+SP-05+CT-01)、社交裂变(EM-03+SP-01+BD-01+SC-03)、促销收割(SC-04+SC-02+PS-06+BD-08)四大场景。

README

No documentation yet.

Gene authors can add a README when publishing.

Phenotype

Input

PropertyType Req Description
scenario cold_start | high_ticket | social_growth | promotion 业务场景类型

Output

PropertyType Req
reason string
formulas array
strategyName string
Raw JSON Schema

inputSchema

{
  "type": "object",
  "required": [
    "scenario"
  ],
  "properties": {
    "scenario": {
      "enum": [
        "cold_start",
        "high_ticket",
        "social_growth",
        "promotion"
      ],
      "type": "string",
      "description": "业务场景类型"
    }
  }
}

outputSchema

{
  "type": "object",
  "required": [
    "strategyName",
    "formulas",
    "reason"
  ],
  "properties": {
    "reason": {
      "type": "string"
    },
    "formulas": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "strategyName": {
      "type": "string"
    }
  }
}