Provides specific recovery suggestions based on error type
Examples
show_error_recovery("file_not_found")
#> TOOLS: File Not Found - Recovery Steps:
#> 1. Check file path: list.files() to see available files
#> 2. Check the function documentation for the expected file extension
#> 3. Check working directory: getwd() to see current location
#> 4. Use full path: '/full/path/to/file.vtt'
show_error_recovery("permission_denied")
#> TOOLS: Permission Denied - Recovery Steps:
#> 1. Check file permissions
#> 2. Try a different output directory
#> 3. Run as administrator if needed
#> 4. Contact system administrator