What problem does it solve? Reading many files one by one to extract summaries wastes context tokens and slows down codebase analysis. This Skill replaces N sequential Read calls with one compact shell pipeline that returns only the aggregated result you need. ## Core Features & Use Cases - File Size Audits: Find files exceeding line-count thresholds (e.g., > 100 lines) across TypeScript, Python, and PHP codebases with a single find/wc/awk pipeline. - Symbol and Dependency Extraction: Grep exported symbols as compact JSON via ripgrep and jq, or list package dependencies with versions from package.json and composer.json. - Log and LOC Scanning: Scan error logs for ERROR/FATAL patterns and compute lines-of-code breakdowns by file extension. - Use Case: When asked to find all files over 100 lines in src/, run one find | xargs wc -l | awk pipeline and get a ~1KB sorted table instead of consuming ~60KB reading ten files individually. ## Quick Start Ask the agent to audit the codebase for files over 100 lines using a single shell pipeline instead of reading files individually.