feat(image-generator, video-from-script): 优化质量检查项,移除不适用条件

- 移除图片水印、字幕覆盖等视频素材级质量检查,改为 Agent 可自动化验证的检查项
- 将输出目录命名从 `{account}` 改为 `{name}`,与账号体系文档对齐
- 废弃 account.json 中已不再使用的 `pipeline` 字段
- 风格文件命名从英文改为中文,更直观易识别
This commit is contained in:
2026-04-30 01:17:52 +08:00
parent 6f338a8539
commit c0b05c85c3
4 changed files with 13 additions and 22 deletions

View File

@@ -15,7 +15,7 @@ accounts/
│ │ └── .gitkeep
│ └── styles/ # 风格文件目录(可多个)
│ └── .gitkeep
└── {account_id}/ # 用户创建的账号
└── {account}/ # 用户创建的账号(目录名 = account.json 的 id输出目录用 name 命名)
├── account.json
├── references/ # 参考图(所有风格共用)
│ ├── ref_001.png
@@ -35,7 +35,6 @@ accounts/
"id": "tech-talk",
"name": "科技解说",
"description": "科技类短视频账号,深色背景,赛博朋克风格",
"pipeline": "image-video", // 已废弃,保留不影响
"imageModel": "gemini",
"videoModel": "kling",
"batchSize": 30,
@@ -58,7 +57,6 @@ accounts/
| `id` | string | 账号唯一标识(与目录名一致) |
| `name` | string | 账号显示名 |
| `description` | string | 一句话描述 |
| `pipeline` | enum | `image-only` / `image-video` |
| `defaultFormat` | string | 默认画幅9:16 / 16:9 / 1:1 / 4:3 |
| `imageModel` | string | 默认图片模型 |
| `videoModel` | string | 默认视频模型 |
@@ -134,11 +132,11 @@ accounts/
### 风格文件命名
使用英文短横线命名,描述性强
- `cyberpunk-eastern-character.md`赛博东方角色
- `dark-forbidden-archive.md`暗黑禁书档案
- `neon-cityscape.md`霓虹城市
- `ink-wash-landscape.md`水墨山水
使用中文命名,直观识别
- `赛博东方角色.md`
- `暗黑禁书档案.md`
- `霓虹城市.md`
- `水墨山水.md`
---