/webnovel-doctor
对网文项目做只读体检/诊断(/webnovel-doctor)——检查目录、文件、JSON、SQLite、RAG 配置、依赖与 Dashboard 构建产物是否完整。
$ npx -y skills add lingfengqaq/webnovel-writer --skill webnovel-doctor --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/webnovel-doctor
Context preview
The summary Claude sees to decide when to auto-load this skill.
对网文项目做只读体检/诊断(/webnovel-doctor)——检查目录、文件、JSON、SQLite、RAG 配置、依赖与 Dashboard 构建产物是否完整。
SKILL.md
webnovel-doctor.SKILL.mdname: webnovel-doctor description: 对网文项目做只读体检/诊断(/webnovel-doctor)——检查目录、文件、JSON、SQLite、RAG 配置、依赖与 Dashboard 构建产物是否完整。 version: 0.1.0 allowed-tools: Read Bash argument-hint: "[--chapter N] [--deep]"
Webnovel Doctor
目标
只读诊断当前书项目:确认所处阶段应有的目录、文件、JSON、SQLite、RAG 配置、Python 依赖与 Dashboard 构建产物是否完整。
原则
1. 只读诊断:不写项目文件、不自动修复、不安装依赖、不启动 Dashboard。 2. 先 `project-status` 取短状态,再 `doctor` 做阶段感知检查。 3. 统一用 `python -X utf8`,避免中文路径编码问题。 4. 缺失项按 runtime 推导的阶段解释影响与修复建议,不把 init 刚结束的项目按已写多章项目检查。
执行
准备路径:
export WORKSPACE_ROOT="${CLAUDE_PROJECT_DIR:-$PWD}"
export SCRIPTS_DIR="${CLAUDE_PLUGIN_ROOT:?}/scripts"短状态:
python -X utf8 "${SCRIPTS_DIR}/webnovel.py" --project-root "${WORKSPACE_ROOT}" project-status --format summary标准体检:
python -X utf8 "${SCRIPTS_DIR}/webnovel.py" --project-root "${WORKSPACE_ROOT}" doctor --format text指定章节加 `--chapter {chapter_num}`,深度体检加 `--deep`。
输出方式
汇报包含:当前 `phase` 与 `target_chapter`、是否有 blocker、缺失或异常文件路径、RAG / Python / Dashboard 配置是否缺失、每个问题的影响和建议修复动作。
不执行真实修复,不展示或要求粘贴 API key。
一个跑在 Claude Code 上的长篇网文创作插件。从初始化设定、规划卷纲,到写章、审查、沉淀记忆、查询状态,再到一个只读的可视化面板——整条创作流程都给你串好了。 它想解决的其实就一件事:让 AI 写到几百章,依然记得住设定、接得住伏笔、守得住大纲。 一句话定位:这是一套面向长篇连载的一致性系统,不是写完就忘的一次性生成器。 下一代 v7 设计已经进入公开意见征集期,欢迎阅读 Discussions #118:v7 设计公示 并留下反馈。只看 Issue 区的用户也可以从 Issue #119:v7
Other skills on webnovel-writer.
- /webnovel-dashboard
启动只读小说管理面板,查看项目状态、实体图谱与章节内容。
Open skill - /webnovel-init
深度初始化网文项目。通过分阶段交互收集完整创作信息,生成可直接进入规划与写作的项目骨架与约束文件。
Open skill - /webnovel-learn
从当前会话提取成功写作模式并写入 project_memory.json
Open skill - /webnovel-plan
基于总纲生成卷纲、时间线和章纲,并把新增设定增量写回现有设定集。
Open skill - /webnovel-query
查询项目设定、角色、力量体系、势力、伏笔等信息。支持紧急度分析与金手指状态查询。
Open skill - /webnovel-review
使用审查 Agent 评估章节质量,生成报告并写回审查指标。
Open skill

