Directly run ONE browser tool (bypass the worker)
agent_call_toolDirectly invoke a browser engine tool from the director model, bypassing the worker for faster and more accurate execution. Returns a tool envelope with ok/data/error.
Instructions
★你(director)亲自跑一个浏览器引擎工具,跳过 DeepSeek worker —— 强模型直驱引擎级工具,比委派 worker 磨更快更准。代价:每个工具回合都花 director 的 token(打破默认成本拆分;按需用、不用就仍走 agent_start/agent_send 省钱流)。先 agent_tools 查 name 和参数。返回工具信封(ok/data/error);浏览器侧 dispatch 永不抛、已校验未知工具与缺参。⚠ 任一会话(agent_start 起的)正在跑时会被拒绝:raw 直调与运行中的 agent 共享同一标签页/hook/trace 状态,并发会串味——先 agent_stop/agent_wait_for_stop 再直调。需浏览器 v0.20.0+。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | 该工具的参数对象(按 agent_tools 给的 params 填);省略=空对象 | |
| name | Yes | 工具名(来自 agent_tools),如 code_search / signer_trace / page_eval / jsvmp_trace | |
| workspaceRoot | No | 本次调用的工作目录绝对路径(影响 fs_*/run_node/trace 落盘);省略=引擎默认 |