()
| 280 | return description || 'Run PowerShell command'; |
| 281 | }, |
| 282 | async prompt(): Promise<string> { |
| 283 | return getPrompt(); |
| 284 | }, |
| 285 | isConcurrencySafe(input: PowerShellToolInput): boolean { |
| 286 | return this.isReadOnly?.(input) ?? false; |
| 287 | }, |
nothing calls this directly
no test coverage detected