- 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根治(字节截断+巨兽降级)+一键短剧按钮
160 lines
5.5 KiB
Markdown
160 lines
5.5 KiB
Markdown
# Character Sheet Generator - 人物角色设定板生成技能
|
||
|
||
<div align="center">
|
||
|
||

|
||

|
||

|
||

|
||
|
||
**专业AI人物角色设定板(三视图)生成提示词技能**
|
||
|
||
[English](#english) | [中文](#中文)
|
||
|
||
</div>
|
||
|
||
---
|
||
|
||
## 中文
|
||
|
||
### 简介
|
||
|
||
这是一个用于AI图像生成的专业角色设定板(Character Design Sheet / Turnaround)生成技能。它可以帮助你生成标准化的人物三视图设定稿,包含:
|
||
|
||
- **主视觉区**:正面 + 侧面 + 背面 半身像
|
||
- **补充信息区**:面部特写 + 配色色板(附色值)
|
||
- **局部细节区**:配饰、纹样、关键道具放大展示
|
||
- **全身比例照**:带身高标尺的全身立绘
|
||
|
||
### 支持的风格
|
||
|
||
| 模板 | 适用场景 |
|
||
|------|----------|
|
||
| `base.md` | 通用基础模板,所有风格适用 |
|
||
| `ancient_chinese.md` | 国风古风、汉服、仙侠、武侠 |
|
||
| `realistic.md` | 真人写实、摄影级肖像 |
|
||
| `anime.md` | 日系动漫、二次元、赛璐璐 |
|
||
| `modern.md` | 现代都市、时装、职场 |
|
||
| `sci-fi.md` | 赛博朋克、科幻、未来 |
|
||
| `fantasy.md` | 西式奇幻、中世纪、DND |
|
||
|
||
### 快速开始
|
||
|
||
1. **选择风格模板**:根据你的角色类型选择对应的模板文件
|
||
2. **填写参数**:替换模板中的 `{{变量名}}` 为你的角色设定
|
||
3. **生成图片**:将完整提示词输入AI绘图工具(即梦、Midjourney、Stable Diffusion、Seedream等)
|
||
4. **迭代优化**:根据生成结果调整参数
|
||
|
||
### 模板变量说明
|
||
|
||
| 变量 | 说明 | 示例 |
|
||
|------|------|------|
|
||
| `{{gender}}` | 性别 | 女性/男性 |
|
||
| `{{age}}` | 外观年龄 | 20岁 |
|
||
| `{{face_shape}}` | 脸型 | 瓜子脸 |
|
||
| `{{expression}}` | 表情 | 微笑 |
|
||
| `{{eyebrow_type}}` | 眉型 | 柳叶眉 |
|
||
| `{{eye_type}}` | 眼型 | 杏仁眼 |
|
||
| `{{eye_temperament}}` | 眼神 | 眼神傲慢 |
|
||
| `{{hair_style}}` | 发型 | 黑长发束起 |
|
||
| `{{hair_accessories}}` | 发饰 | 佩戴汉服头饰 |
|
||
| `{{height}}` | 身高 | 170cm |
|
||
| `{{temperament}}` | 气质 | 气质清冷 |
|
||
| `{{outfit_description}}` | 服饰描述 | 粉底黑纹汉服 |
|
||
| `{{outfit_colors}}` | 配色 | 粉+黑+金 |
|
||
| `{{key_accessories}}` | 配饰 | 玉簪、珍珠耳坠 |
|
||
|
||
### 使用示例
|
||
|
||
参见 `examples/` 目录:
|
||
- `example_ancient.md` - 国风汉服女子(参考案例)
|
||
- `example_modern.md` - 现代职场男性
|
||
- `example_anime.md` - 动漫二次元少女
|
||
|
||
### 推荐生成参数
|
||
|
||
- **尺寸**:竖版 3:4 或 2:3(如 864x1152、1024x1536)
|
||
- **模型**:根据风格选择对应模型
|
||
- **建议**:同时生成2-4张,挑选一致性最好的
|
||
|
||
### 目录结构
|
||
|
||
```
|
||
character-sheet-skill/
|
||
├── SKILL.md # 技能主文件(核心说明)
|
||
├── README.md # 本说明文件
|
||
├── templates/ # 提示词模板库
|
||
│ ├── base.md # 通用基础模板
|
||
│ ├── ancient_chinese.md # 国风古风模板
|
||
│ ├── realistic.md # 真人写实模板
|
||
│ ├── anime.md # 动漫二次元模板
|
||
│ ├── modern.md # 现代都市模板
|
||
│ ├── sci-fi.md # 科幻赛博模板
|
||
│ └── fantasy.md # 西式奇幻模板
|
||
├── examples/ # 完整示例
|
||
│ ├── example_ancient.md
|
||
│ ├── example_modern.md
|
||
│ └── example_anime.md
|
||
├── assets/ # 参考资源
|
||
└── scripts/ # 辅助脚本
|
||
```
|
||
|
||
---
|
||
|
||
## English
|
||
|
||
### Introduction
|
||
|
||
A professional AI character design sheet (turnaround) prompt engineering skill. Generate standardized character reference boards with:
|
||
|
||
- **Main View**: Front + Side + Back bust portraits
|
||
- **Reference Panel**: Facial close-up + Color palette with hex codes
|
||
- **Detail Callouts**: Close-ups of accessories, patterns, key items
|
||
- **Full Body**: Full body standing portrait with height scale
|
||
|
||
### Supported Styles
|
||
|
||
| Template | Use Case |
|
||
|----------|----------|
|
||
| `base.md` | Universal base template |
|
||
| `ancient_chinese.md` | Chinese ancient / Hanfu / Xianxia / Wuxia |
|
||
| `realistic.md` | Photorealistic / Photography portrait |
|
||
| `anime.md` | Japanese anime / Cel-shading / 2D |
|
||
| `modern.md` | Modern urban / Fashion / Contemporary |
|
||
| `sci-fi.md` | Cyberpunk / Sci-fi / Futuristic |
|
||
| `fantasy.md` | High fantasy / Medieval / D&D |
|
||
|
||
### Quick Start
|
||
|
||
1. **Choose a template** from `templates/` based on your character style
|
||
2. **Fill in parameters** by replacing `{{variable_name}}` placeholders
|
||
3. **Generate image** using the full prompt in AI image generators (Jimeng, Midjourney, Stable Diffusion, Seedream, etc.)
|
||
4. **Iterate** based on results
|
||
|
||
### Template Variables
|
||
|
||
| Variable | Description | Example |
|
||
|----------|-------------|---------|
|
||
| `{{gender}}` | Character gender | Female/Male |
|
||
| `{{age}}` | Apparent age | 20 years old |
|
||
| `{{face_shape}}` | Face shape | Oval face |
|
||
| `{{height}}` | Height | 170cm |
|
||
| `{{outfit_description}}` | Outfit details | Pink and black hanfu |
|
||
|
||
See `SKILL.md` for full documentation.
|
||
|
||
### Recommended Settings
|
||
|
||
- **Aspect Ratio**: Portrait 3:4 or 2:3 (e.g., 864x1152, 1024x1536)
|
||
- **Tip**: Generate 2-4 variants and pick the most consistent one
|
||
|
||
---
|
||
|
||
## License
|
||
|
||
MIT License - Feel free to use and modify.
|
||
|
||
## Contributing
|
||
|
||
Contributions are welcome! Feel free to submit pull requests with new style templates or improvements.
|