From a89b2d29928e516c6ae7d458e6577b66349eed1f Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sun, 23 Nov 2025 23:09:32 -0800 Subject: [PATCH] Removed `streamable_shell` from docs This config option no longer exists Addresses #7207 --- docs/config.md | 2 -- docs/example-config.md | 1 - 2 files changed, 3 deletions(-) diff --git a/docs/config.md b/docs/config.md index d14f7482f25..5051f270693 100644 --- a/docs/config.md +++ b/docs/config.md @@ -33,7 +33,6 @@ Optional and experimental capabilities are toggled via the `[features]` table in ```toml [features] -streamable_shell = true # enable the streamable exec tool web_search_request = true # allow the model to request web searches # view_image_tool defaults to true; omit to keep defaults ``` @@ -43,7 +42,6 @@ Supported features: | Key | Default | Stage | Description | | ----------------------------------------- | :-----: | ------------ | ---------------------------------------------------- | | `unified_exec` | false | Experimental | Use the unified PTY-backed exec tool | -| `streamable_shell` | false | Experimental | Use the streamable exec-command/write-stdin pair | | `rmcp_client` | false | Experimental | Enable oauth support for streamable HTTP MCP servers | | `apply_patch_freeform` | false | Beta | Include the freeform `apply_patch` tool | | `view_image_tool` | true | Stable | Include the `view_image` tool | diff --git a/docs/example-config.md b/docs/example-config.md index 117d0cb2a2b..97ed22a2b79 100644 --- a/docs/example-config.md +++ b/docs/example-config.md @@ -211,7 +211,6 @@ view_image = true [features] # Leave this table empty to accept defaults. Set explicit booleans to opt in/out. unified_exec = false -streamable_shell = false rmcp_client = false apply_patch_freeform = false view_image_tool = true