What problem does it solve? Reading and summarizing local text files often requires guessing file types and dealing with oversized logs. This Skill provides a clear workflow for detecting file types first, then reading only the relevant portions of text-based files. ## Core Features & Use Cases - MIME Type Detection: Uses the file command to probe file types before reading, avoiding wasted effort on unsupported formats. - Structured Text Reading: Handles txt, md, json, yaml, csv, tsv, log, sql, ini, toml, and source code files, summarizing keys, columns, or key sections as appropriate. - Large Log Handling: Uses tail to inspect the last lines of large log files and summarizes recent errors and warnings. - Use Case: A user asks to review a 50MB application log. The Skill probes the type, reads only the last 200 lines, and summarizes recent errors and notable patterns instead of dumping the entire file. ## Quick Start Read and summarize the contents of the local file app.log, focusing on recent errors.