$npx -y skills add AI-Practical-Lab/novel-writer --skill novel-check-quality版本: 2.0 功能: 质量检查
| 1 | # novel-check-quality |
| 2 | |
| 3 | **版本**: 2.0 |
| 4 | **功能**: 质量检查 |
| 5 | |
| 6 | --- |
| 7 | |
| 8 | ## 输入 |
| 9 | |
| 10 | ```yaml |
| 11 | chapter_content: string |
| 12 | chapter_number: number |
| 13 | framework: object |
| 14 | project_path: string |
| 15 | ``` |
| 16 | |
| 17 | --- |
| 18 | |
| 19 | ## 输出 |
| 20 | |
| 21 | ```yaml |
| 22 | status: "success" |
| 23 | passed: boolean |
| 24 | warnings: |
| 25 | - type: "consistency" | "structure" | "style" |
| 26 | message: string |
| 27 | severity: "low" | "medium" | "high" |
| 28 | errors: |
| 29 | - type: string |
| 30 | message: string |
| 31 | severity: "critical" |
| 32 | details: |
| 33 | word_count: number |
| 34 | structure_ratio: |
| 35 | setup: number |
| 36 | climax: number |
| 37 | aftermath: number |
| 38 | ``` |
| 39 | |
| 40 | --- |
| 41 | |
| 42 | ## 检查维度 |
| 43 | |
| 44 | | 维度 | 检查项 | 处理方式 | |
| 45 | |------|--------|---------| |
| 46 | | 一致性 | 设定冲突、人物OOC | 警告,不阻塞 | |
| 47 | | 结构 | 60-20-20比例 | 错误,需修正 | |
| 48 | | 风格 | 形容词过多 | 警告,不阻塞 | |
| 49 | | 完整性 | 必填元素缺失 | 错误,需修正 | |
| 50 | |
| 51 | 检查结果供参考,严重结构错误才阻塞流程。 |