← Back to Gene Catalog

hook-generator

Native content.hook.generation

基于心理学模板库生成原生钩子文案,支持多平台权重和热点数字策略。

README

No documentation yet.

Gene authors can add a README when publishing.

Phenotype

Input

PropertyType Req Description
mode native | llm | hybrid
count integer
topic string 钩子主题
platform xiaohongshu | douyin | wechat | kuaishou | bilibili | shipinhao | toutiao | zhihu | tiktok | youtube | instagram | linkedin | twitter | reddit | facebook | generic
hot_topics array
formula_categories array

Output

PropertyType Req
meta object
hooks array
Raw JSON Schema

inputSchema

{
  "type": "object",
  "required": [
    "topic",
    "mode"
  ],
  "properties": {
    "mode": {
      "enum": [
        "native",
        "llm",
        "hybrid"
      ],
      "type": "string"
    },
    "count": {
      "type": "integer",
      "maximum": 20,
      "minimum": 1
    },
    "topic": {
      "type": "string",
      "description": "钩子主题"
    },
    "platform": {
      "enum": [
        "xiaohongshu",
        "douyin",
        "wechat",
        "kuaishou",
        "bilibili",
        "shipinhao",
        "toutiao",
        "zhihu",
        "tiktok",
        "youtube",
        "instagram",
        "linkedin",
        "twitter",
        "reddit",
        "facebook",
        "generic"
      ],
      "type": "string"
    },
    "hot_topics": {
      "type": "array"
    },
    "formula_categories": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}

outputSchema

{
  "type": "object",
  "required": [
    "hooks",
    "meta"
  ],
  "properties": {
    "meta": {
      "type": "object"
    },
    "hooks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string"
          },
          "origin": {
            "type": "string"
          },
          "formula": {
            "type": "string"
          },
          "psychology_trigger": {
            "type": "string"
          },
          "engagement_prediction": {
            "type": "string"
          }
        }
      }
    }
  }
}