Check if a file is safe to read and get size/type information
/plugin marketplace add ojallington/large-file-handler/plugin install ojallington-large-file-handler@ojallington/large-file-handler# File Safety Check Check the specified file for readability and potential issues. ## Analysis Steps 1. **Check file existence** at: $ARGUMENTS.path 2. **Get file information** using bash: 3. **Determine file category**: - **Safe**: Text files < 10MB - **Warning**: Text files 10-50MB, binary files < 5MB - **Blocked**: Files > 50MB, databases (.db, .sqlite), large archives 4. **Report findings** with: - File size (human readable) - File type (text/binary/database/archive) - Readability status (Safe/Warning/Blocked) - Recommended approach if not directly readabl...