ugc-flow

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

UGC Flow

UGC工作流

Use When

适用场景

  • The user wants a UGC-style product, app, service, testimonial, or creator video pipeline.
  • The job spans multiple steps: product analysis, creator/persona logic, storyboard, image or video clip generation, montage, subtitles, and QA.
  • The request needs a standard production line instead of one isolated runner.
  • 用户需要UGC风格的产品、应用、服务、推荐或创作者视频生产流程。
  • 工作涵盖多个步骤:产品分析、创作者/角色设定逻辑、分镜脚本、图片或视频片段生成、剪辑、字幕制作及QA。
  • 请求需要标准化生产线,而非单一独立任务执行器。

Do Not Use When

不适用场景

  • The user only needs one image, voice take, or simple clip. Use
    image-generation
    ,
    audio-generation
    , or
    video-generation
    .
  • The user only needs transcription, subtitles, or video analysis. Use
    media-router
    .
  • A provider-ready request already exists. Use the relevant runner.
  • 用户仅需单张图片、一段音频或简单视频片段。请使用
    image-generation
    audio-generation
    video-generation
  • 用户仅需转录、字幕制作或视频分析。请使用
    media-router
  • 已有面向服务商的就绪请求。请使用相关任务执行器。

Core Boundary

核心边界

This is a workflow skill. It coordinates public skills and checkpoints; it does not call providers or submit generation jobs.
本技能为工作流类技能,负责协调公共技能与检查点;不直接调用服务商或提交生成任务。

Standard Pipeline

标准流程

  1. product_analysis
    : collect product facts, core promise, proof points, constraints, and claims that must not be invented.
  2. creator_logic
    : define creator type, audience fit, native behavior, tone, and what the creator is allowed to claim.
  3. board
    : use
    reference-decode
    ,
    reference-contract-builder
    , and
    storyboard-grid-writer
    when references or panel logic matter.
  4. clip
    : use
    image-generation
    ,
    audio-generation
    , and
    video-generation
    to produce controller handoffs.
  5. montage
    : use
    editing-decision-engine
    for cut logic, B-roll roles, and subtitle or beat placement.
  6. qa
    : use
    creative-qa
    and
    prompt-preflight-qa
    before execution and after generated assets return.
  1. product_analysis
    :收集产品事实、核心价值主张、支撑点、约束条件及不得虚构的声明。
  2. creator_logic
    :定义创作者类型、受众适配性、原生行为风格、语气调性及创作者可发布的声明范围。
  3. board
    :当涉及参考素材或分镜逻辑时,使用
    reference-decode
    reference-contract-builder
    storyboard-grid-writer
  4. clip
    :使用
    image-generation
    audio-generation
    video-generation
    完成控制器交接。
  5. montage
    :使用
    editing-decision-engine
    确定剪辑逻辑、B-roll作用及字幕或节奏点位置。
  6. qa
    :在执行前及生成资产返回后,使用
    creative-qa
    prompt-preflight-qa

Required Checkpoints

必要检查点

  • product facts and source basis
  • creator/persona rule
  • viewer question and hook mechanism
  • reference contract with binding, inspiration-only, and excluded references
  • storyboard or beat plan
  • image/audio/video controller handoffs
  • runner-ready requests only after strategy is locked
  • QA verdict and rerun notes
  • 产品事实及来源依据
  • 创作者/角色规则
  • 观众疑问及钩子机制
  • 包含绑定素材、仅作灵感素材及排除素材的参考协议
  • 分镜脚本或节奏规划
  • 图/音/视频控制器交接文件
  • 策略锁定后才可生成就绪的任务执行请求
  • QA结论及重跑说明

Routing Table

路由表

NeedHandoff
Product or market evidenceresearch or strategy skill appropriate to the product
Creator discovery
creator-discovery-router
Benchmark-to-brief
benchmark-to-brief
Reference decode or boundary
reference-decode
,
reference-contract-builder
Storyboard grid
storyboard-grid-writer
Image assets
image-generation
Voice or dub
audio-generation
Clips or talking-head video
video-generation
Cut logic and montage
editing-decision-engine
Final creative review
creative-qa
需求交接目标
产品或市场依据适配产品的研究或策略类技能
创作者挖掘
creator-discovery-router
基准转简报
benchmark-to-brief
参考素材解析或边界界定
reference-decode
reference-contract-builder
分镜网格脚本
storyboard-grid-writer
图片资产
image-generation
语音或配音
audio-generation
视频片段或访谈类视频
video-generation
剪辑逻辑与合成
editing-decision-engine
最终创意审核
creative-qa

Output Shape

输出格式

Return a workflow packet:
  • productionGoal
  • sourceBasis
  • creatorLogic
  • referencePolicy
  • storyboardOrBeatPlan
  • generationHandoffs
  • montagePlan
  • qaPlan
  • openQuestions
返回工作流数据包,包含:
  • productionGoal
  • sourceBasis
  • creatorLogic
  • referencePolicy
  • storyboardOrBeatPlan
  • generationHandoffs
  • montagePlan
  • qaPlan
  • openQuestions

Fail Fast

快速失败规则

  • Stop if product facts, claim boundaries, creator logic, reference ownership, or target format are missing and would change the pipeline.
  • Do not submit provider jobs.
  • Do not let runners make creative or claim decisions.
  • Do not treat benchmark identity, exact creator likeness, or competitor brand assets as copyable production input.
  • 若产品事实、声明边界、创作者逻辑、参考素材所有权或目标格式缺失且会影响流程,则立即停止。
  • 不得提交服务商任务。
  • 不得让任务执行器做出创意或声明决策。
  • 不得将基准标识、精确创作者肖像或竞品品牌资产作为可复制的生产输入。

Public Command Boundary

公共命令边界

  • Check readiness first:
    postplus doctor --skill ugc-flow
    .
  • This public skill is instruction-driven. Produce the workflow packet directly from the available evidence.
  • Do not call private provider/runtime paths or unpublished local tools.
  • If the CLI returns a quote-confirmation challenge, run
    postplus quote confirm --json --challenge-file <challenge.json>
    and retry with the returned token.
  • 首先检查就绪状态:
    postplus doctor --skill ugc-flow
  • 本公共技能为指令驱动型,直接基于现有依据生成工作流数据包。
  • 不得调用私有服务商/运行时路径或未发布的本地工具。
  • 若CLI返回报价确认挑战,请运行
    postplus quote confirm --json --challenge-file <challenge.json>
    ,并使用返回的令牌重试。