acp: Pass through experimental capability for terminal output (#40165)

Ben Brandt created

Release Notes:

- N/A

Change summary

crates/agent_servers/src/acp.rs | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

Detailed changes

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,
             })