(input, context)
| 123 | return pattern => matchWildcardPattern(pattern, file_path) |
| 124 | }, |
| 125 | async checkPermissions(input, context): Promise<PermissionDecision> { |
| 126 | const appState = context.getAppState() |
| 127 | return checkWritePermissionForTool( |
| 128 | FileEditTool, |
| 129 | input, |
| 130 | appState.toolPermissionContext, |
| 131 | ) |
| 132 | }, |
| 133 | renderToolUseMessage, |
| 134 | renderToolResultMessage, |
| 135 | renderToolUseRejectedMessage, |
nothing calls this directly
no test coverage detected