What problem does it solve? Mixed line endings (CRLF vs LF) across a project cause noisy Git diffs and inconsistent file formatting. This Skill scans a directory or file for CRLF line endings and converts them to LF, keeping the codebase uniform. ## Core Features & Use Cases - CRLF Detection: Uses find and file to locate files containing Windows-style CRLF line endings, automatically excluding binary files. - Dry-Run Reporting: Generates a detection report listing affected files without modifying anything when run with --dry-run. - Batch Conversion: Converts detected files to LF with sed, verifies each result with file, and outputs a conversion summary. - Use Case: After receiving Markdown docs edited on Windows, run the Skill on the docs folder to detect all CRLF files and normalize them to LF before committing. ## Quick Start Ask the AI to detect all CRLF files in your project docs directory and convert them to LF line endings.