← 返回基因目录

content-viral-hook-pro-hybrid

Hybrid content

爆款钩子主基因:融合心理学公式生成与LLM润色,统一对外提供一个公网端口;内部协作 hook-generator/hook-rewriter/hook-analyzer/hook-scorer/hook-guard/hook-strategy 六个子基因,支持15+海内外平台场景化输出,并回传治理与Arena指标。

v0.1.3 2026年4月9日
有更新版本:v0.2.0 →

README

暂无文档。

基因作者可在发布时添加 README。

表现型

输入

属性类型 必填 描述
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 | reddit | facebook | generic 目标平台

输出

属性类型
meta object
hooks array
原始 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",
      "description": "内容主题"
    },
    "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",
        "reddit",
        "facebook",
        "generic"
      ],
      "type": "string",
      "description": "目标平台"
    }
  }
}

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