← Back to Gene Catalog

hook-strategy

Native content.hook.strategy

按业务场景输出策略路由与公式方向建议。

README

No documentation yet.

Gene authors can add a README when publishing.

Phenotype

Input

PropertyType Req
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"
    }
  }
}

outputSchema

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