cang-ying/skill/index.json
Zhuyuan Operations 80805449ca EED: 经验记忆推送——技能库(11技能+开源角色设定板)+遇事不决先搜索铁律+人物三/四视图+场景四视图工业级方法论+声画装配+多视图工具
- skill/ 技能库:index.json 11 技能 + community_techniques.md 社区技巧 + character_sheet_learn.md 角色版学习 + scene_4view_learn.md 场景四视图工业级方法 + character-sheet-generator 开源技能(7风格模板)
- tools/character_turnaround.py:人物三/四视图(主视觉+三视图/展示台)+场景四视角,Z-Image 本地
- tools/audio_pipeline.py:Edge-TTS配音+字幕+BGM+混音,Agent stage⑥有声成片
- agent_short_drama.py:一键短剧 Agent --until audio 全链路
- eed_web.py:技能库端点(/api/skills,/api/skill)+E2BIG根治(字节截断+巨兽降级)+一键短剧按钮
2026-08-01 03:16:48 +08:00

126 lines
4.4 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"version": "1.0",
"skills": [
{
"id": "screenplay",
"name": "🎭 编剧大师",
"type": "prompt",
"desc": "剧本创作方法论4格式+8步工作流+5概念组合+5结构",
"prompt_file": "../memory/eed/screenplay_skill.md",
"usage": "注入编剧大师方法论,用「输入创意→大师流程→成稿」方式创作剧本"
},
{
"id": "storyboard",
"name": "🎬 分镜生成",
"type": "tool",
"desc": "剧本→分镜故事板含5色标注法",
"prompt_file": "../memory/eed/storyboard_自动化.md",
"tool": "python3 ../video-ai-system/tools/run_storyboard.py",
"args_schema": {
"script": "剧本文本或文件路径"
}
},
{
"id": "style_transfer",
"name": "🎨 风格转绘",
"type": "prompt",
"desc": "2D⇄真人双向转绘提示词骨架+10种风格库",
"prompt_file": "../memory/eed/style_transfer_skill.md",
"usage": "注入风格转绘骨架,描述原图+目标风格→生成转绘提示词"
},
{
"id": "ltx_video",
"name": "🎥 LTX 出片",
"type": "tool",
"desc": "文本/图片→LTX视频GGUF Q4本地推理",
"prompt_file": "../memory/eed/ltx_prompt_skill.md",
"tool": "python3 ../video-ai-system/tools/run_ltx_i2v.py",
"args_schema": {
"prompt": "视频提示词",
"image": "起始图路径(可选)"
}
},
{
"id": "zimage",
"name": "🖼️ Z-Image 生图",
"type": "tool",
"desc": "文本→Z-Image高清图本地ComfyUI",
"prompt_file": null,
"tool": "python3 ../video-ai-system/tools/generate_assets_local.py",
"args_schema": {
"prompt": "生图提示词"
}
},
{
"id": "compose",
"name": "✂️ 拼接成片",
"type": "tool",
"desc": "多段视频拼接+成片FFmpeg",
"prompt_file": null,
"tool": "python3 ../video-ai-system/tools/video_composer.py",
"args_schema": {
"input": "视频目录",
"output": "输出路径"
}
},
{
"id": "character_turnaround",
"name": "👤 人物三视图/场景四视图",
"type": "tool",
"desc": "Z-Image人物三视图(front/side/back)+特写 / 场景四视图(正面/背面/室内/鸟瞰)",
"prompt_file": null,
"tool": "python3 ../video-ai-system/tools/character_turnaround.py",
"args_schema": {
"type": "char(人物三视图)|scene(场景四视图)",
"desc": "角色/场景描述",
"views": "3或4",
"output": "输出路径(可选)"
}
},
{
"id": "audio_voice",
"name": "🎙 Edge-TTS 配音",
"type": "tool",
"desc": "分镜 dialogue → Edge-TTS 多角色配音(微软免费)",
"prompt_file": null,
"tool": "python3 ../video-ai-system/tools/audio_pipeline.py",
"args_schema": {
"action": "voice",
"sb": "分镜JSON",
"out": "输出目录"
}
},
{
"id": "audio_mix",
"name": "🎛 声画装配",
"type": "tool",
"desc": "配音+字幕+BGM+混音成片Agent stage ⑥)",
"prompt_file": null,
"tool": "python3 ../video-ai-system/tools/audio_pipeline.py",
"args_schema": {
"action": "mix/srt/bgm",
"video": "成片",
"voice_dir": "配音目录",
"bgm": "BGM文件",
"out": "输出"
}
},
{
"id": "community_techniques",
"name": "📚 社区技巧库",
"type": "prompt",
"desc": "AI漫剧/角色一致性/三视图/场景四视图/分镜 社区实战技巧+角色版学习笔记",
"prompt_file": "community_techniques.md",
"prompt_file_alt": "community_techniques.md",
"usage": "注入社区技巧库,按需套用(角色锁定/三视图布局/场景四视图/分镜公式)"
},
{
"id": "character_sheet",
"name": "📋 人物角色设定板(开源技能)",
"type": "prompt",
"desc": "社区开源 character-sheet-generator角色三视图设定板生成技能7风格模板+变量体系+四区布局规范)",
"prompt_file": "character-sheet-generator/SKILL.md",
"usage": "注入开源角色设定板技能,选风格模板(base/ancient/realistic/anime/modern/sci-fi/fantasy),填变量生成标准角色设定板"
}
]
}