Git analytics that works across GitHub, GitLab, and Bitbucket
3 points
1 day ago
| 1 comment
| HN
I built Gitmore. Connects via webhooks, tracks commits and PRs, and gives you one dashboard. AI answers questions about activity, sends weekly reports to Slack/email. Connect agent to slack which answers your questions directly from your workspace. https://gitmore.io (free for 1 repo).
akhnid
1 day ago
[-]
How it works:

Every commit, PR, and push gets normalized into a standard schema – message, description, author, timestamp, files changed, PR context. The AI reasons over structured data, not just raw text.

PR descriptions carry more context than commit messages. We capture both.

Automated reports:

Schedule weekly or monthly summaries to Slack or email. Forward to investors, share with your board, or just stay in the loop.

Other features: - Slack bot: Team can ask questions without GitHub access - Contributor stats

Security:

Webhooks only. Git platforms push event metadata to us – we never pull or clone.

We store: - Commit messages, PR titles, descriptions, timestamps, authors, file counts

We never access: - Source code, diffs, file contents

Stack: - Token encryption: Fernet (HMAC-SHA256 + AES-128-CBC) - Webhook verification: HMAC-SHA256 - 2FA support

Check your repo's webhook settings after connecting to verify.

Free for 1 repo: https://gitmore.io

reply