Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
18 changes: 18 additions & 0 deletions internal/parser/taxonomy.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,24 @@ func NormalizeToolCategory(rawName string) string {
case "code_interpreter":
return "Bash"

// Warp tools
case "read_files":
return "Read"
case "apply_file_diff":
return "Edit"
case "search_codebase":
return "Grep"
case "call_mcp_tool", "read_mcp_resource":
return "Tool"
case "suggest_plan", "suggest_create_plan":
return "Tool"
case "write_to_long_running_shell_command":
return "Bash"
case "read_shell_command_output":
return "Read"
case "use_computer":
return "Tool"

default:
// MCP tools may carry a server prefix (e.g.
// "Zencoder_subagent__ZencoderSubagent") or use
Expand Down
10 changes: 10 additions & 0 deletions internal/parser/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const (
AgentKiroIDE AgentType = "kiro-ide"
AgentCortex AgentType = "cortex"
AgentHermes AgentType = "hermes"
AgentWarp AgentType = "warp"
)

// AgentDef describes a supported coding agent's filesystem
Expand Down Expand Up @@ -271,6 +272,15 @@ var Registry = []AgentDef{
DiscoverFunc: DiscoverHermesSessions,
FindSourceFunc: FindHermesSourceFile,
},
{
Type: AgentWarp,
DisplayName: "Warp",
EnvVar: "WARP_DIR",
ConfigKey: "warp_dirs",
DefaultDirs: warpDefaultDirs(),
IDPrefix: "warp:",
FileBased: false,
},
}

// NonFileBackedAgents returns agent types where FileBased is false.
Expand Down
Loading