← Back to Gene Catalog

content-viral-hook-pro-hybrid

Hybrid content

爆款钩子主基因:统一公网入口,编排生成/润色/分析/评分/风控/策略六个子基因,并回传治理与Arena指标。

README

No documentation yet.

Gene authors can add a README when publishing.

Phenotype

Input

PropertyType Req
mode native | hybrid | llm = native
count number = 5
topic string
locale zh-CN | en-US = zh-CN
platform xiaohongshu | douyin | wechat | kuaishou | bilibili | shipinhao | toutiao | zhihu | tiktok | youtube | instagram | linkedin | twitter

Output

PropertyType
meta object
hooks array
Raw JSON Schema

inputSchema

{
  "type": "object",
  "required": [
    "topic"
  ],
  "properties": {
    "mode": {
      "enum": [
        "native",
        "hybrid",
        "llm"
      ],
      "type": "string",
      "default": "native"
    },
    "count": {
      "type": "number",
      "default": 5,
      "maximum": 10,
      "minimum": 1
    },
    "topic": {
      "type": "string"
    },
    "locale": {
      "enum": [
        "zh-CN",
        "en-US"
      ],
      "type": "string",
      "default": "zh-CN"
    },
    "platform": {
      "enum": [
        "xiaohongshu",
        "douyin",
        "wechat",
        "kuaishou",
        "bilibili",
        "shipinhao",
        "toutiao",
        "zhihu",
        "tiktok",
        "youtube",
        "instagram",
        "linkedin",
        "twitter"
      ],
      "type": "string"
    }
  }
}

outputSchema

{
  "type": "object",
  "properties": {
    "meta": {
      "type": "object",
      "properties": {
        "arena": {
          "type": "object"
        },
        "run_id": {
          "type": "string"
        },
        "llm_used": {
          "type": "boolean"
        }
      }
    },
    "hooks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string"
          },
          "formula_id": {
            "type": "string"
          },
          "psychology_trigger": {
            "type": "string"
          },
          "engagement_prediction": {
            "type": "string"
          }
        }
      }
    }
  }
}