(tool: ToolName)
| 104 | } |
| 105 | |
| 106 | export function isSearchTool(tool: ToolName): boolean { |
| 107 | return tool === "grep_files" || tool === "find_files" || tool === "grep" || tool === "glob"; |
| 108 | } |
| 109 | |
| 110 | export function isShellTool(tool: ToolName): boolean { |
| 111 | return ( |
no outgoing calls
no test coverage detected