@robin_bie感觉 gpt 好像有点傻。。不如 glm 中发帖

claude code 里面使用  gpt-5.6-terra , 对应 claude 4.8 的选项。 
要求解决某个BUG  然后使用subagent  调度一个工作流 重启后端代码,然后回到主线程 重新验证case,然后 gpt  就搞不定了 换了glm-5.2 完全没这个问题。 
我让gpt它自己总结如下: 
## 3. 我的执行过程与错误

### 错误 1:误用 worktree 隔离

- 做法:调用 `Agent` 时传入 `isolation: "worktree"`。
- 结果:Agent 在创建前被安全检查拦截。
- 原因:项目 `.claude` 是指向 `.agents` 的软链;worktree 创建器拒绝可能把路径重定向到仓库外的软链。
- 用户纠正:只要求 subagent 执行启动,并未要求 worktree。
- 后果:未创建 worktree,未修改软...
 
 
Back to Top