Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func TestParseAgentType(t *testing.T) {
want: AgentTypeGemini,
},
{
firstArg: "cursor",
firstArg: "cursor-agent",
agentTypeVar: "",
want: AgentTypeCursor,
},
Expand Down Expand Up @@ -89,7 +89,7 @@ func TestParseAgentType(t *testing.T) {
},
{
firstArg: "claude",
agentTypeVar: "cursor",
agentTypeVar: "cursor-agent",
want: AgentTypeCursor,
},
{
Expand Down
2 changes: 1 addition & 1 deletion lib/msgfmt/msgfmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ const (
AgentTypeCodex AgentType = "codex"
AgentTypeGemini AgentType = "gemini"
AgentTypeAmp AgentType = "amp"
AgentTypeCursor AgentType = "cursor"
AgentTypeCursor AgentType = "cursor-agent"
AgentTypeCustom AgentType = "custom"
)

Expand Down