Generate an ownership map of a codebase to identify who effectively owns each module.
Find the files with the most churn in the last 90 days to target refactoring effort.
Produce an HTML or Markdown report for an engineering manager covering contribution percentages per developer.
Limit analysis to a single directory to scope onboarding documents for a new hire.
README is short and the achievement-related shell scripts in the repo are not documented, so confirm exact behaviour by reading source.
gitblame-insights is a command-line tool that walks through a git repository and summarises what git blame would tell you, but across every file at once. The result is a set of reports about code ownership, contribution percentages, and which files change the most often. The README pitches it as a way for a team to see who effectively owns each part of a codebase, and where the activity is concentrated, without running blame on every file by hand. The README lists a small number of subcommands. The analyze command produces an ownership breakdown for an entire repository or for a specific directory. The owners command can group results by module. The churn command lists the files that have changed most often, with an option to show only the top N. Reports can be written as Markdown, JSON, or HTML, and the project supports a .gitblame-insights.yml configuration file plus time-windowed analysis covering the last 30, 90, or 365 days. The sample output in the README shows two tables. The first lists files in a src/ tree alongside an owner name and a coverage percentage. The second lists the most-changed files over a 90-day window with a count of how many changes each one had. The README also mentions per-developer contribution percentages as an output, though no sample of that view is included. The repository also ships a folder of shell scripts named after popular GitHub profile achievements, including quickdraw.sh, yolo.sh, publicist.sh, pull-shark.sh, and pair-extraordinaire.sh, plus an achievement-tracker.js file. The README does not explain in detail what these scripts do or how they relate to the main blame-analysis tool. The README is short overall, so anyone evaluating the project will likely need to read the scripts and source files directly to confirm exact behaviour.
Generated 2026-05-22 · Model: sonnet-4-6 · Verify against the repo before relying on details.