(input)
| 467 | }; |
| 468 | }, |
| 469 | isSearchOrReadCommand(input) { |
| 470 | const parsed = inputSchema().safeParse(input); |
| 471 | if (!parsed.success) return { |
| 472 | isSearch: false, |
| 473 | isRead: false, |
| 474 | isList: false |
| 475 | }; |
| 476 | return isSearchOrReadBashCommand(parsed.data.command); |
| 477 | }, |
| 478 | get inputSchema(): InputSchema { |
| 479 | return inputSchema(); |
| 480 | }, |
nothing calls this directly
no test coverage detected