From 6e8c3560e7e2c8a35e23b8deb326a220fd725c2a Mon Sep 17 00:00:00 2001 From: Marvinthebored <262704729+Marvinthebored@users.noreply.github.com> Date: Fri, 7 Aug 2026 06:26:28 +0800 Subject: [PATCH] docs: synchronize the exec config table with timeoutSeconds Addresses the P2 finding. The tools.exec.timeoutSeconds row still described the per-call override as `timeout` and `timeout: 0`, which no longer exist. The only remaining bare `timeout` reference in this page is the deliberate contrast with the process tool's millisecond field. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01XQojYRCUdXhcKFeu4QW5Gh --- docs/tools/exec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/exec.md b/docs/tools/exec.md index a851771b0ddf..05b82ce5811d 100644 --- a/docs/tools/exec.md +++ b/docs/tools/exec.md @@ -88,7 +88,7 @@ Notes: | Key | Default | Notes | | ------------------------------------ | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `tools.exec.timeoutSeconds` | `1800` | Default per-command exec timeout in seconds. Per-call `timeout` overrides it; per-call `timeout: 0` disables the exec process timeout. | +| `tools.exec.timeoutSeconds` | `1800` | Default per-command exec timeout in seconds. Per-call `timeoutSeconds` overrides it; per-call `timeoutSeconds: 0` disables the exec process timeout. | | `tools.exec.host` | `auto` | Resolves to `sandbox` when a sandbox runtime is active, `gateway` otherwise. | | `tools.exec.mode` | host-derived | Canonical policy knob. See [Modes](#modes) below. | | `tools.exec.reviewer.model` | configured agent primary | Optional provider/model override for `mode=auto` review. |