Dev visibility for non-technical founders
1 points| akhnid | 1 month ago
*What it does:*
Connect your repos. Ask questions: - "What shipped last week?" - "What's in progress?" - "Who worked on what?"
Get plain English answers from your commit history.
*Automated reports:*
Schedule weekly or monthly summaries. Delivered to Slack or email. Forward to investors or your board.
*Other features:* - Slack bot for team-wide access - Contributor stats
*Security:*
Webhooks only. We store commit messages, PR titles, timestamps, and authors. We never access source code.
Stack: - Token encryption: Fernet (HMAC-SHA256 + AES-128-CBC) - Webhook verification: HMAC-SHA256 - 2FA support
Verify by checking your repo's webhook settings after connecting.
Free for 1 repo: https://gitmore.io
jackfranklyn|1 month ago
One thing worth noting: commit messages and PR titles are often written for other devs, not for business context. "Fix race condition in checkout" tells you nothing about customer impact. The quality of output from tools like this depends heavily on whether your team writes decent commit messages in the first place.
For small teams where the founder actually understands the product deeply, I've found a weekly 15-minute sync more valuable than automated reports. But I can see this being useful at the scale where you can't have those conversations with everyone.
akhnid|1 month ago
The AI reasons over structured data, not just raw commit messages. PR descriptions especially help. Most devs write oneline commits but actually explain context in the PR body. We capture that.
Still, teams with good commit hygiene get better output. No way around it.
Appreciate the thoughtful take.