fix(agent): disable unobservable task subagents

This commit is contained in:
2026-08-06 19:24:03 +08:00
parent b19af8846a
commit f66b9c3e9d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ Skills 树是**动态生长的**——工作流不是预置的,而是从实际
3. 大结果集禁止完整读取,优先采样/截断/按字段读取
4. 避免直接用 `Read``cat` 读取结果文件,尤其是大文件;优先用 `head`/`tail`/`rg` 截断查看,或用 Python 只向 stdout 输出精简 JSON,避免大文件冲击 stdin/stdout
5. 无可用数据时不得编造结果
6. 尽量不使用 `task` 子代理,避免无法观测过程进行人为干预
6. 禁止使用 `task` 子代理;当前前端无法观测和干预子代理的具体工作过程
## 工作流沉淀(skill_manager
+1
View File
@@ -60,6 +60,7 @@
"*/logs": "deny"
},
"question": "allow",
"task": "deny",
"todo": "allow",
"todoread": "allow",
"todowrite": "allow"