* Gets a description of the file reading operation * @returns A string describing the file being read
()
| 108 | * @returns A string describing the file being read |
| 109 | */ |
| 110 | getDescription(): string { |
| 111 | const relativePath = makeRelative( |
| 112 | this.params.path, |
| 113 | this.config.getTargetDir(), |
| 114 | ); |
| 115 | return shortenPath(relativePath); |
| 116 | } |
| 117 | |
| 118 | // Helper for consistent error formatting |
| 119 | private errorResult(llmContent: string, returnDisplay: string): ToolResult { |
nothing calls this directly
no test coverage detected