with one click
viral-breakdown-to-video-prompts
// NexTide 爆款拆解并反推视频提示词。MVP 接入图文复刻任务创建与视频文案提取链路,适合“拆解这个爆款”“提取视频文案并反推提示词”“把参考内容变成复刻基底”等请求。
// NexTide 爆款拆解并反推视频提示词。MVP 接入图文复刻任务创建与视频文案提取链路,适合“拆解这个爆款”“提取视频文案并反推提示词”“把参考内容变成复刻基底”等请求。
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | viral-breakdown-to-video-prompts |
| description | NexTide 爆款拆解并反推视频提示词。MVP 接入图文复刻任务创建与视频文案提取链路,适合“拆解这个爆款”“提取视频文案并反推提示词”“把参考内容变成复刻基底”等请求。 |
| allowed-tools | Read, Write, Bash |
Follow shared NexTide rules in:
nextide-sharedUse this skill when the user provides:
and wants a reusable breakdown or prompt base.
Capability id:
viral.breakdown.video_prompts
CLI contract:
npm run nextide -- capability run viral.breakdown.video_prompts \
--input .nextide/input/viral-breakdown-video-prompts.json \
--output .nextide/output/viral-breakdown-video-prompts-result.json \
--mode submit \
--user-api-key <NEX用户积分API_KEY>
{
"referenceVideo": "https://.../video.mp4",
"sourcePlatform": "tiktok",
"description": "可选参考说明",
"language": "zh-CN"
}
The runner calls video copy extraction. If callback URL is configured, it may return waiting_callback.
{
"sourceTitle": "爆款标题",
"sourceText": "原文正文...",
"sourceImages": ["https://.../1.png"],
"sourcePlatform": "xiaohongshu",
"sourceUrl": "https://..."
}
The runner creates an image-text replication task.
Video path may return transcript/copy data synchronously or pending async status.
Image-text path returns:
{
"taskId": "...",
"status": "BREAKDOWN_COMPLETED"
}
This capability creates/extracts the source base. To produce final Seedance/Veo prompts, combine with:
reference-decodereference-contract-buildervideo-request-architectprompt-preflight-qaseedanceAlways separate:
viral.breakdown.video_prompts0.2.0videoavailableinternal_apitruemediumnexTideApiKeynonenone10/minute, 60/hourviral-breakdown, video-prompts, replicationDescription:
拆解爆款视频/图文结构,并反推可用于视频模型的提示词与 reference contract。MVP 接入图文复刻任务创建与视频文案提取链路。
Examples:
Input fields:
referenceUrl (string):参考爆款链接。referenceVideo (string):参考视频 URL。targetProduct (object):目标产品信息。promptProvider (string):目标视频模型或提示词格式。 默认:"seedance"Output fields:
breakdown (object):爆款拆解结果。referenceContract (object):学习/禁止复制契约。videoPrompts (array):分段视频提示词。CLI:
nextide capability run viral.breakdown.video_prompts \
--input .nextide/input/viral.breakdown.video_prompts.json \
--output .nextide/output/viral.breakdown.video_prompts-result.json \
--mode submit \
--wait \
--timeout 900 \
--interval 5
RUN_ID=$(node -e "const r=require('./.nextide/output/viral.breakdown.video_prompts-result.json'); console.log(r.run && r.run.runId)")
nextide run follow "$RUN_ID" \
--output-dir .nextide/output/$RUN_ID \
--timeout 900 \
--interval 5
Artifact-first reading order:
.nextide/output/$RUN_ID/summary.json..nextide/output/$RUN_ID/manifest.json.preview.html / gallery.html with rich preview when supported.datatable.json for data/table results.available, fail fast and explain what is missing.--wait when the user wants a finished result in the same turn.nextide run artifacts <run-id> --output-dir .nextide/output/<run-id> --download --gallery --datatable and read summary.json then manifest.json.nextide run follow <run-id> --output-dir .nextide/output/<run-id> --timeout 1800 --interval 5.summary.recommendedResponse.message, preview.html, datatable.json, and local artifact paths over pasting huge raw JSON.explanation, convert it into a clear user-facing failure message with next actions.