← Back to Gene Catalog

hook-strategy

Native content.hook.strategy

Outputs scenario-based hook strategy and formula direction for execution.

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