{ “status”: “error”, “error”: “streamTo is only supported for runtime=acp; got runtime=subagent” } 这龙虾知道报错还一直带 streamTo 求助一下 佬 到底应该怎么分发子进程啊 1 个帖子 - 1 位参与者 阅读完整话题
从 Any牌路由器 SubAgent 和 Haiku 模型无法正常调用的解决办法 继续讨论: 叼毛 就在今天 114 版本将npm包中的cli.js 之于node 的兼容运行部分 制品 全面更换成了 bun版 且学codex 把每个平台的制品都拆成了单独的分包 原本的 cli.js 的包现在改为了 包装脚本 cli-wrapper.cjs 用于拉取对应平台的 bun版二进制 其安装脚本 可以看到 基本是毁了 解包还出来 cli.js 也可以 但其目前的动作其实表明了 npm包的真废弃 不过也没有一步到位 因为最开始就是用bun构建但是兼容了node的 所以114目前解出来的 仍然可以 node来跑 只不过不确定后续动作 (等会整个仓库来分发新node版) 如果某日开始 cch的机制更进一步的 完全强硬实施(禁用的的环境变量移除掉) 或者 源码中直接将兼容node这部份包裹代码给移除 那时就是真正的废弃之时了 你让我强行用npm包我也不敢用了 (怕封号) 附一个乐子 有时候谣言是怎么传播的呢就很好奇 我们并未清楚那天穿山甲到底说了啥 25 个帖子 - 23 位参与者 阅读完整话题
前文: any站opus 4.7的WebSearch无法正常使用 - #20,来自 Haleclipse 实际上 作为官转? WebSearch 是不可能不工作的 但很有可能他Pick了Haiku来调用这个 web_search 的tool 又因为 Haiku 会被两个原因直接报错 导致看起来不可用 所以就两个问题 : SubAgent 无法调用 Haiku 无法使用 (实际是可以使用的) fix script(only 2.1.111+): apply-claude-code-subagent-thinking-fix.zip (9.7 KB) 还包括 如下设置 (必配合填写)(如果你足够细心 会发现这个只影响打开Any时) 注意修复仅限Anyrouter 其他非官方是否同样也有此问题未知 同时使用官方可能会有影响(能工作肯定能 但是不知道多让思考了会有什么不好的地方,毕竟人官方直接区分对待了 没有无脑追加) claude --settings ~/.claude/settings.anyrouter.json 懂的人知道在干嘛 不懂我也就扔个旧文 Any牌路由器使用清障! 收工 一想到明天还要加班就好烦 26 个帖子 - 20 位参与者 阅读完整话题
Once subagents start spawning other subagents, basic questions get hard to answer: what is running right now, what tool did it just call, did the child agent actually do what the parent asked. I wanted a way to verify that each agent is doing the work that fits its role, and to spot when a run goes off track. Lazyagent is a terminal TUI that collects events from Claude Code, Codex, and OpenCode and shows them in one place. It groups sessions from different runtimes by working directory, so Claude and Codex runs on the same repo appear under the same project. Features: - Filter events by type: tool calls, user prompts, session lifecycle, system events, or code changes only. - See which agent or subagent is responsible for each action. The agent tree shows parent-child relationships, so you can trace exactly what a spawned subagent did vs what the parent delegated. - View code diffs at a glance. Editing events render syntax-highlighted diffs inline, with addition/deletion stats. - Search across all events. You know a file was touched but not which agent did it -- type `/` and find it. - Check token usage per session. A single overlay shows cost, model calls, cache hit rate, per-model breakdowns, and which tools ran the most. - Watch a run in real time, or go back through a completed session to audit what happened. Please let me know if there's any feature you want! Comments URL: https://news.ycombinator.com/item?id=47805963 Points: 1 # Comments: 0
奇怪了,有佬友也遇到这个问题吗?? 1 个帖子 - 1 位参与者 阅读完整话题
如题,目前我用claude code浏览器自动下载的话,学校ip问题总是触发cloudfare的验证,claude一看到立马就停止不干了,所以还不如直接调用scihub 3 个帖子 - 2 位参与者 阅读完整话题
superpower技能中 使用cc+opus4.6,选择【1】当前会话子代理,opus4.6情况下,子代理可以并发运行 使用cc+glm5,选择【1】当前会话子代理,glm只能串行执行 请求下大佬们,glm5如何设置可以并发执行? 1 个帖子 - 1 位参与者 阅读完整话题
我发现 codex 不喜欢等subagent 明明都已经干一半了 主agent说子代理没响应 直接就关掉 然后自己有把子代理干一半的活自己干一边 疯狂浪费我token 1 个帖子 - 1 位参与者 阅读完整话题
最近一个比较大的任务,Codex选择使用subagent来协助,后台发现使用了多种模型,而且思考深度不一样 6 个帖子 - 4 位参与者 阅读完整话题
在上下文是有限的这个前提下 很多调度“agent/主agent”会把一些消耗上下文的任务交给subagent去做 比如说: 计划,修改,审核 但是这就有了一个问题, 计划,修改,审核 这类操作,都很依赖于agent对项目的理解 而调度agent在向subagent分发任务的时候,不可避免的会损失一部分项目信息,如果传递的比较多,又会导致subagent运行缓慢,成本爆炸 所以说我就有了一个想法,为什么我们不让调度agent自己去干这些活呢? 我们可以在需要做plan的时候,把调度agent fork出去,加一段固定的prompt,告诉它下面应该干哪些活,最后返回任务的结果给原本的调度agent(TodoList,修改结果,审核方案) 而这个过程中,大部分的context都是走缓存的,所以说成本实际上并没有很高(甚至可能比直接让子agent自己去探索更便宜),而因为上下文包含完整的项目信息和调度agent的意图,执行的也更精准 7 个帖子 - 3 位参与者 阅读完整话题
想念ggboom的第三周,好久没有【5.4、xhight、fast、subagent】了。 现在就得精打细算 思考级别高了吧,浪费时间,浪费token 思考级别低了吧,又怕质量不够 AI给出的方案是: 7 个帖子 - 7 位参与者 阅读完整话题
求助佬们。测试应该怎么做? 我试过起subagent用chrome-mcp来做页面测试。但是首先是很慢,其次效果也不太好。 我希望的是能够通过读代码理解代码,输出一个完整的测试用例,然后ai自己去网页做功能性测试(最好是后台静默运行,支持人工唤起页面)。然后对于失败的案例记录(文字+录屏)。 hh,最近对ai的态度几乎是在许愿的地步了 1 个帖子 - 1 位参与者 阅读完整话题