DEV Community

SemTiOne
SemTiOne

Posted on

StandupBot – Generate daily standups from git history using Ollama or Groq

Tired of trying to remember what you did yesterday for standup?

I built StandupBot, a CLI tool that reads your git history and generates a clean standup summary using a local or free cloud LLM. No paid APIs required.

Features

  • Private with Ollama (runs locally)
  • Free cloud option via Groq
  • One command: standup
  • Copy to clipboard: standup --copy
  • Health check: standup doctor

Quick Start

Install Ollama from https://ollama.com, then:

ollama pull llama3
pip install -e .
standup --setup
standup
Enter fullscreen mode Exit fullscreen mode

Example Output

**Yesterday:** Fixed authentication bug and refactored token validation.
**Today:** Working on the new /users endpoint.
**Blockers:** None
Enter fullscreen mode Exit fullscreen mode

🔗 https://github.com/SemTiOne/standup-bot

Feedback welcome!

Top comments (0)