From c61429e166fb16fc2f9f0d1c77f8d829ca2ff8b7 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 6874b5deb669e604bc02ef65b163457eab75ddbf..7df318793a141434114dd2b9ddc027043ac9c074 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, })