What problem does it solve? When landing in an unfamiliar repository, an agent or developer cannot tell which files are load-bearing and volatile versus dead and stable from directory listings alone. This Skill turns one bounded git log --numstat pass into a ranked hotspot list, replacing O(files) per-file log inspection with a single scan. ## Core Features & Use Cases - Ranked hotspot lists: churn files and churn dirs rank paths by a transparent score combining commit count, recency multiplier, and distinct author count. - Single-file history: churn file <path> follows renames through all history to tell one file's complete story. - Noise filtering: Lockfiles, dist/, node_modules/, and vendored paths are excluded by default so generated code never dominates the rankings. - Use Case: An agent starting work in a new repo runs churn dirs --depth 1 to identify the project's center of gravity before editing anything. ## Quick Start Use the churn skill to show me which files and directories in this repository change most often and were touched most recently.