Comment by toomanyrichies
20 hours ago
I'm building CommitKit, a tool that turns your git history into résumé bullet points and STAR-based talking points for interviews.
After being downsized twice in two years from senior engineering roles, I realized how painful it is to reconstruct what you actually accomplished at a job once you’ve lost access to your repos.
Each time, I had to dig through memory and scraps of old PRs to remember what I’d built. The first time, I lost GitHub access immediately after the layoff notice. This time, at least we got 90 days of paid transition work. But even with just 5 months in the role, I’d already made hundreds of commits. For engineers who’ve been around for years, that’s an impossible amount of history to summarize manually.
So I’m building CommitKit, a command-line tool that scans your repo for your commits, groups them by feature or theme using embeddings, and generates professional CV bullet points or behavioral interview summaries. It runs locally using Ollama, so your commit messages and diffs never leave your machine. The goal is to help people quickly turn real engineering work into clear narratives of impact, especially when time or access is limited.
It’s still early: the clustering isn’t grouping commits quite as I’d hoped, possibly due to sparse commit messages or embedding quirks. But it’s been a great learning project: my first CLI tool, my first deployment on Render, and my first serious use of Ollama for local LLM inference.
Nice! When I was leaving a company after 4 years there, I went through jira + my git commits to write a log of everything I'd done. Really great look back.
Yeah I really want to add a JIRA integration as well, that would likely improve the output a lot.
I’m terrible at maintaining my resume/cv so I think this is awesome!
Me too! Such a chore!