HackerTrans
TopNewTrendsCommentsPastAskShowJobs

slmslm

no profile record

Submissions

[untitled]

1 points·by slmslm·7 माह पहले·0 comments

[untitled]

1 points·by slmslm·7 माह पहले·0 comments

[untitled]

1 points·by slmslm·7 माह पहले·0 comments

[untitled]

1 points·by slmslm·7 माह पहले·0 comments

[untitled]

1 points·by slmslm·7 माह पहले·0 comments

Git history knows more than your standup. We built an AI to query it

3 points·by slmslm·7 माह पहले·1 comments

AI that reads your Git history so you don't have to write status reports

1 points·by slmslm·7 माह पहले·1 comments

I built a tool that turns raw Git activity into AI summaries

1 points·by slmslm·7 माह पहले·1 comments

I built a unified Git activity engine to clean the mess between GitHub,Bitbucket

1 points·by slmslm·7 माह पहले·1 comments

I built an AI that reads your Git history and writes status reports

1 points·by slmslm·7 माह पहले·1 comments

comments

slmslm
·7 माह पहले·discuss
I've been building Gitmore for a while now. The problem I was solving: every week I'd spend 1-2 hours scrolling through commits trying to piece together "what did we ship?" for stakeholders who don't want to read "feat: impl oauth2 w/ refresh".

The insight: all the information is already in Git. Commits, PRs, authors, timestamps. It's just unreadable for anyone who isn't a developer.

So I built an AI layer on top that:

1. Connects to GitHub/GitLab/Bitbucket via OAuth (reads only metadata, never code) 2. Captures commits and PRs in real-time via webhooks 3. Uses Claude to transform raw Git activity into human-readable summaries 4. Delivers automatically via email or Slack on whatever schedule you want

Example transformation:

  Before: "fix: rm deprecated api calls, refactor: extract auth middleware"
  After: "Fixed API timeouts by updating deprecated endpoints. Improved 
         security by centralizing authentication logic."
Technical stack: Next.js 15, MongoDB, Bull queues for async report generation, Claude API for summarization. Webhooks for real-time data, not polling.

Some things I learned building this:

- Commit messages follow strict patterns (73% start with feat:/fix:/refactor:) but contain almost no "why" context - Teams spend ~78 hours/year/person writing status reports manually - The question "what did we ship this week?" accounts for 62% of queries about repositories

Other features that emerged from the same data layer: - AI agents you can chat with ("What did Sarah work on last week?") - Developer leaderboards with contribution scoring - Auto-generated public changelogs

Free tier: 1 repo, 1 automation. Pro ($15/mo): 5 repos. Enterprise ($49/mo): 20 repos + custom branded reports.

https://gitmore.io

Happy to answer technical questions about the architecture, AI prompting strategy, or webhook handling. Also curious - how do other teams handle the "what did we ship" problem?
slmslm
·7 माह पहले·discuss
(And if you want to see what the project turned into: https://gitmore.io)
slmslm
·7 माह पहले·discuss
(And if you want to see what the project turned into: https://gitmore.io)
slmslm
·7 माह पहले·discuss
Here is the link: https://gitmore.io/
slmslm
·7 माह पहले·discuss
This looks like a clean way to surface repo activity. Will definitely subscribe.