(tool: ToolName)
| 108 | } |
| 109 | |
| 110 | export function isShellTool(tool: ToolName): boolean { |
| 111 | return ( |
| 112 | tool === "run_shell" || |
| 113 | tool === "bash" || |
| 114 | tool === "exec_command" || |
| 115 | tool === "write_stdin" |
| 116 | ); |
| 117 | } |
| 118 | |
| 119 | export function isReviewTool(tool: ToolName): boolean { |
| 120 | return tool === "show_changes"; |
no outgoing calls
no test coverage detected