How this agent operates — its isolation, permissions, and tool access model
Agent reference
webnovel-writer:agents/reader-critic-checkerinheritThe summary Claude sees when deciding whether to delegate to this agent
```json { "project_root": "{PROJECT_ROOT}", "chapter_file": "正文/第{NNNN}章-{title_safe}.md" } ``` 1. Read 读 `chapter_file` 全文 2. 把全文作为 `{章节小说}` 代入下方 Prompt 并执行 3. 把结果按输出 Schema 落盘到 `.webnovel/tmp/reader_critic_ch{NNNN}.json` > **仔细研究认真思考详细调查搜索分析 deep research 以正常读者的角度和编辑退稿视角去锐评和找这个小说的问题,最后给出完整详细全面的修改建议以及原因。** > > {章节小说} ```json { "agent": "reader-critic-checker", "chapter": 1, "overall_score": 0-...{
"project_root": "{PROJECT_ROOT}",
"chapter_file": "正文/第{NNNN}章-{title_safe}.md"
}
chapter_file 全文{章节小说} 代入下方 Prompt 并执行.webnovel/tmp/reader_critic_ch{NNNN}.json仔细研究认真思考详细调查搜索分析 deep research 以正常读者的角度和编辑退稿视角去锐评和找这个小说的问题,最后给出完整详细全面的修改建议以及原因。
{章节小说}
{
"agent": "reader-critic-checker",
"chapter": 1,
"overall_score": 0-100,
"will_continue_reading": "yes | hesitant | no",
"pass": true | false,
"problems": [
{
"severity": "critical | high | medium | low",
"quote": "原文一句(≤ 40 字,grep 可定位)",
"perspective": "reader | editor | both",
"reason": "读者/编辑为什么在这里卡/退",
"suggestion": "完整详细的修改建议 + 原因"
}
],
"highlights": [
{ "quote": "原文一句", "reason": "为什么亮眼" }
],
"summary": "一段总评(60-200 字)"
}
pass = will_continue_reading == "yes"problems / highlights 数量不设下限,真实读多少找多少其他一概不限制。Deep research 走起——读者怎么吐槽就怎么写,编辑怎么退稿就怎么退,建议怎么详细怎么来。
tmp/reader_critic_ch{NNNN}.json 与 chapter_meta.checker_scores.reader-critic-checker仅当 chapter ∈ (1, 2, 3, 4, 5):
末世重生 Ch1-11 reader-critic 实测:
Round 19 Phase X1 起,类似 Ch3/4 类首稿低分将自动触发 REWRITE_RECOMMENDED,必须重写而非 polish patch。
npx claudepluginhub xuanranl/webnovelwriter --plugin webnovel-writer创意与选题检查文件处理器,自主扫描小说目录、解析章节范围、并行派发子代理逐章检测。当用户提供小说目录路径或章节编号时,由 command 路由到此 agent。 <example> Context: 用户指定了小说目录和章节范围 user: "选题检查 ./我的小说/ 第1-3章" assistant: "我来调用 concept-check agent 扫描目录并逐章检测第1-3章。" <commentary> 用户提供了路径和章节范围,command 路由到 agent,agent 扫描目录、定位章节文件、并行派发子代理检测。 </commentary> </example> <example> Context: 用户只指定了路径,未指定章节 user: "帮我检查 ./我的小说/ 的选题" assistant: "我来调用 concept-check agent 扫描目录,列出所有章节供你选择。" <commentary> 未指定章节时,agent 先扫描目录列出章节清单,让用户选择检测范围。 </commentary> </example>
MLOps engineer for designing ML infrastructure, CI/CD pipelines for models, model versioning, experiment tracking, automated training pipelines, GPU orchestration, and operational monitoring.