You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: client.go
+13-10Lines changed: 13 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -10,16 +10,17 @@ type Client string
10
10
const (
11
11
// Possible values for the "client" field in interception records.
12
12
// Must be kept in sync with documentation: https://github.com/coder/coder/blob/90c11f3386578da053ec5cd9f1475835b980e7c7/docs/ai-coder/ai-bridge/monitoring.md?plain=1#L36-L44
13
-
ClientClaudeCodeClient="Claude Code"
14
-
ClientCodexClient="Codex"
15
-
ClientZedClient="Zed"
16
-
ClientCopilotVSCClient="GitHub Copilot (VS Code)"
17
-
ClientCopilotCLIClient="GitHub Copilot (CLI)"
18
-
ClientKiloClient="Kilo Code"
19
-
ClientMuxClient="Mux"
20
-
ClientRooClient="Roo Code"
21
-
ClientCursorClient="Cursor"
22
-
ClientUnknownClient="Unknown"
13
+
ClientClaudeCodeClient="Claude Code"
14
+
ClientCodexClient="Codex"
15
+
ClientZedClient="Zed"
16
+
ClientCopilotVSCClient="GitHub Copilot (VS Code)"
17
+
ClientCopilotCLIClient="GitHub Copilot (CLI)"
18
+
ClientKiloClient="Kilo Code"
19
+
ClientCoderAgentsClient="Coder Agents"
20
+
ClientMuxClient="Mux"
21
+
ClientRooClient="Roo Code"
22
+
ClientCursorClient="Cursor"
23
+
ClientUnknownClient="Unknown"
23
24
)
24
25
25
26
// guessClient attempts to guess the client application from the request headers.
0 commit comments