From f06afb7ce9db1143da9202abba594052578f17b4 Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Tue, 14 Oct 2025 11:02:34 +0200 Subject: [PATCH] acp: Pass through experimental capability for terminal output (#40165) Release Notes: - N/A --- crates/agent_servers/src/acp.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/agent_servers/src/acp.rs b/crates/agent_servers/src/acp.rs index 57ddfcf9dc9d635e33f252e6b6f35f015581cfc4..47c887d5927fc9a501d95ed09b89181516d2a502 100644 --- a/crates/agent_servers/src/acp.rs +++ b/crates/agent_servers/src/acp.rs @@ -168,7 +168,10 @@ impl AcpConnection { meta: None, }, terminal: true, - meta: None, + meta: Some(serde_json::json!({ + // Experimental: Allow for rendering terminal output from the agents + "terminal_output": true, + })), }, meta: None, })