name: webnovel-query description: 查询项目设定、角色、力量体系、势力、伏笔等信息。支持紧急度分析与金手指状态查询。 allowed-tools: Read Grep Bash
用户询问关于故事设定、角色、力量体系、势力、伏笔、金手指、节奏等项目内信息时触发。
export WORKSPACE_ROOT="${CLAUDE_PROJECT_DIR:-$PWD}"
export SCRIPTS_DIR="${CLAUDE_PLUGIN_ROOT}/scripts"
export SKILL_ROOT="${CLAUDE_PLUGIN_ROOT}/skills/webnovel-query"
export PROJECT_ROOT="$(python "${SCRIPTS_DIR}/webnovel.py" --project-root "${WORKSPACE_ROOT}" where)"
PROJECT_ROOT 必须包含 .webnovel/state.json${CLAUDE_PLUGIN_ROOT}/ 下读取或写入项目文件先识别查询类型,再用下表最窄工具。不默认全量加载,只在综合 / 跨多类型查询时用 memory-contract load-context。
| 查询类型 | 关键词 | 最窄工具 |
|---|---|---|
| 角色历史状态 | 某角色在第N章时 / 时间点状态 / 境界变化 | knowledge query-entity-state |
| 实体关系 | 关系 / 敌友 / 师徒 / 阵营归属 | knowledge query-relationships |
| 世界规则 | 力量规则 / 设定铁律 / 境界体系约束 | memory-contract query-rules |
| 伏笔 / open loop | 伏笔 / 紧急伏笔 / 未闭合悬念 | memory-contract get-open-loops |
| 综合 / 复杂 | 跨多类型、需要时间线 + 长期记忆联合 | memory-contract load-context |
| 静态设定 | 角色卡 / 力量体系 / 世界观 / 势力 / 标签格式 | Grep + Read 设定集 |
按查询类型按需加载,先识别再加载。路径说明:references/ 指 skill 私有 skills/webnovel-query/references/;../../references/ 指共享 references。
| 查询类型 | Reference | 实际路径 |
|---|---|---|
| 数据流 / 优先级 | 数据流规范 | ${SKILL_ROOT}/references/system-data-flow.md |
| 伏笔分析 | 伏笔分析 | ${SKILL_ROOT}/references/advanced/foreshadowing.md |
| 节奏分析 | Strand 模式 | ${SKILL_ROOT}/../../references/shared/strand-weave-pattern.md |
| 格式查询 | 标签规范 | ${SKILL_ROOT}/references/tag-specification.md |
不得同时加载两个以上 reference,除非用户请求明确跨多类型。
.story-system/MASTER_SETTING.json - 全书主设定(题材、调性、核心禁忌).story-system/volumes/*.json - 卷级合同(本卷目标、节奏策略).story-system/chapters/*.json - 章级合同(本章焦点、动态上下文).story-system/commits/chapter_XXX.commit.json - 写后事实(已发布章节的定稿状态)memory-contract 系列查询 - 记忆编排结果(长期记忆、伏笔、时间线).webnovel/state.json / index.db - 投影层(仅 fallback / read-model,类比网文后台的"角色卡"、"章节列表")优先级说明:
调用最窄工具检索:按类型只调用所需命令,不默认全量 load-context。
# 角色历史状态:某实体在指定章节时的状态
python -X utf8 "${SCRIPTS_DIR}/webnovel.py" --project-root "${PROJECT_ROOT}" knowledge query-entity-state --entity "{entity_id}" --at-chapter {N}
# 实体关系:某实体在指定章节时的所有关系
python -X utf8 "${SCRIPTS_DIR}/webnovel.py" --project-root "${PROJECT_ROOT}" knowledge query-relationships --entity "{entity_id}" --at-chapter {N}
# 世界规则
python -X utf8 "${SCRIPTS_DIR}/webnovel.py" --project-root "${PROJECT_ROOT}" memory-contract query-rules --chapter {chapter_num}
# 伏笔 / open loop
python -X utf8 "${SCRIPTS_DIR}/webnovel.py" --project-root "${PROJECT_ROOT}" memory-contract get-open-loops
# 仅综合 / 复杂查询:需要时间线 + 长期记忆联合时才用
python -X utf8 "${SCRIPTS_DIR}/webnovel.py" --project-root "${PROJECT_ROOT}" memory-contract load-context --chapter {chapter_num}
静态设定(角色卡 / 力量体系 / 世界观 / 标签格式)直接用 Grep 定位行号再 Read 取片段,不经 memory-contract。
# 查询结果:{关键词}
## 概要
- **匹配类型**: {type}
- **数据源**: {实际命中的真源 / 投影层}
- **匹配数量**: X 条
## 详细信息
{结构化数据,含文件路径和行号}
## 数据一致性检查
{state.json 与静态文件的差异,若无差异则省略}
.story-system/ 合同与 accepted commit 缺失,必须显式说明当前查询已降级到 legacy fallback