From 620a6622fde09e86164588c8a63adf2c248dfb09 Mon Sep 17 00:00:00 2001 From: jilinchen Date: Tue, 30 Dec 2025 11:22:35 +0800 Subject: [PATCH] refactor: main agent only reads outline, not fields MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove fields.yaml reading from Step 1 (main agent) - Each web-search-agent reads fields.yaml independently (hard constraint) - Update uncertainty marking format 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- skills/research/deep/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/research/deep/SKILL.md b/skills/research/deep/SKILL.md index bdb7ca7..5639c9a 100644 --- a/skills/research/deep/SKILL.md +++ b/skills/research/deep/SKILL.md @@ -11,7 +11,7 @@ allowed-tools: Bash, Read, Write, Glob, WebSearch, Task ## 执行流程 ### Step 1: 自动定位Outline -在当前工作目录查找 `*/outline.yaml` 文件,读取items列表、execution配置(含items_per_agent)。同时读取同目录下的 `fields.yaml` 获取字段定义。 +在当前工作目录查找 `*/outline.yaml` 文件,读取items列表、execution配置(含items_per_agent)。 ### Step 2: 断点续传检查 - 检查output_dir下已完成的JSON文件 @@ -24,7 +24,7 @@ allowed-tools: Bash, Read, Write, Glob, WebSearch, Task - **硬约束**:仅传入item相关信息和输出路径 - **硬约束**:agent必须自行读取 `{topic}/fields.yaml` 获取字段定义 - **硬约束**:禁止在prompt中直接嵌入字段定义 -- **硬约束**:不确定的字段值标注【不确定】,并在JSON末尾uncertain数组中列出该字段名 +- **硬约束**:不确定的字段值标注[不确定],并在JSON末尾uncertain数组中列出该字段名(即对应字段的实际位置需要说明一次和uncertain字段位置再总结一次) - 输出结构化JSON到output_dir ### Step 4: 等待与监控