Skip to content

Commit af024fb

Browse files
committed
feat(agent): add shell capability support
Enabling terminal capability in Visual Studio for testing agentic chat: https://sourcegraph.com/github.com/sourcegraph/cody@main/-/blob/agent/bindings/kotlin/lib/src/main/kotlin/com/sourcegraph/cody/agent/protocol_generated/ClientCapabilities.kt?L22 ## Test plan - Create a new solution - Start adding code - Check if shell commands can be executed - Verify that the shell capability is properly configured in the client
1 parent cb73d11 commit af024fb

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/Cody.AgentTester/Program.cs

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ private static async Task Initialize()
7979
WebviewMessages = "string-encoded",
8080
GlobalState = "stateless",
8181
Secrets = "stateless",
82+
Shell = Capability.Enabled,
8283
},
8384
ExtensionConfiguration = new ExtensionConfiguration
8485
{

src/Cody.Core/Agent/Protocol/ClientCapabilities.cs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public class ClientCapabilities
99
public Capability? Edit { get; set; }
1010
public Capability? EditWorkspace { get; set; }
1111
public Capability? UntitledDocuments { get; set; }
12+
public Capability? Shell { get; set; }
1213
public Capability? ShowDocument { get; set; }
1314
public Capability? CodeLenses { get; set; }
1415
public ShowWindowMessageCapability? ShowWindowMessage { get; set; }

src/Cody.Core/Infrastructure/ConfigurationService.cs

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public ClientInfo GetClientInfo()
4343
EditWorkspace = Capability.None,
4444
ProgressBars = Capability.Enabled,
4545
CodeLenses = Capability.None,
46+
Shell = Capability.Enabled,
4647
ShowDocument = Capability.Enabled,
4748
Ignore = Capability.Enabled,
4849
UntitledDocuments = Capability.None,

0 commit comments

Comments
 (0)