19075592e5
Deploy Slides / build-and-deploy (push) Successful in 1m16s
- Reduce Item count per slide: pipeline 4→3, solution 4→2, highlights 6→4 - Remove tech-stack architecture layering Item (moved to tech-stack grid) - Simplify eino-graph: shorter Go code, 3 Items→2 - Simplify prompt-agent: smaller mermaid, shorter Item text - Simplify async-task: merge 3 Items→2, remove footer - Simplify data-model: merge 4 grid items→2 - Simplify architecture: reduce ASCII diagram from 38 to 20 lines - Simplify dedup-ws: remove JSON code block, shorter Items - Simplify deployment: smaller mermaid, shorter Items - Simplify problem: shorter Item text, remove bullet lists - Simplify style-system: fix typo, shorter Item text
16 lines
679 B
Markdown
16 lines
679 B
Markdown
# 风格系统 — 两层架构
|
||
|
||
保证一致性与灵活性的风格管理方案
|
||
|
||
<Item title="🏗️ 工程风格(Project Style)">
|
||
全局风格配置,以 kvPairs 存储(如 `artStyle=pixel`)。同一工程下所有素材自动继承,保证风格统一。
|
||
</Item>
|
||
|
||
<Item title="🔀 任务风格覆盖(Task Override)">
|
||
单次任务可覆盖部分风格键,未指定的自动继承工程风格。适合生成同一角色的不同变体。
|
||
</Item>
|
||
|
||
<Item title="⚙️ 合并逻辑">
|
||
`finalStyle = merge(projectStyle, taskStyle)` — 工程风格为基底,任务风格逐键覆盖。自定义标签(`custom:` 前缀)自动提取注入提示词。
|
||
</Item>
|