(input, context)
| 231 | return { result: true } |
| 232 | }, |
| 233 | async checkPermissions(input, context): Promise<PermissionDecision> { |
| 234 | const appState = context.getAppState() |
| 235 | return checkReadPermissionForTool( |
| 236 | GrepTool, |
| 237 | input, |
| 238 | appState.toolPermissionContext, |
| 239 | ) |
| 240 | }, |
| 241 | async prompt() { |
| 242 | return getDescription() |
| 243 | }, |
nothing calls this directly
no test coverage detected