(toolName: string)
| 94 | |
| 95 | // Helper to check if a tool uses bash prefix patterns |
| 96 | export function isBashPrefixTool(toolName: string): boolean { |
| 97 | return TOOL_VALIDATION_CONFIG.bashPrefixTools.includes(toolName) |
| 98 | } |
| 99 | |
| 100 | // Helper to get custom validation for a tool |
| 101 | export function getCustomValidation(toolName: string) { |
no outgoing calls
no test coverage detected