Daily Standup Notes Generator
Paste a git diff or git log β get standup notes ready to read in 3 formats. Free, BYO API key.
git log --oneline --since=yesterday Β·
Last commit diff: git diff HEAD~1 Β·
Staged changes: git diff --staged Β·
Full PR: git diff main...HEAD
No key? Try Demo Mode below. Get a free key at console.anthropic.com.
Frequently Asked Questions
What's the best git command to use for standup prep?
For yesterday's work: git log --oneline --since=yesterday. For what you staged today: git diff --staged. For your last commit: git diff HEAD~1. For a whole feature branch vs main: git diff main...HEAD.
What are the three output modes?
Quick Standup produces 3 concise bullets (what I did, what I'm doing next, any blockers) β exactly what async standups and Slack updates need. Detailed Update breaks changes down file by file, useful for longer status docs or sprint reviews. Manager Summary translates technical changes into business-impact language for 1:1s, emails, or engineering newsletters.
Does this work with git log output, not just diff?
Yes. Paste git log --oneline --since=yesterday or a full git log -p β the AI adapts to whatever you provide. For richer standup notes, full diffs are better than commit message logs alone.
Is my source code safe?
Your diff goes directly from your browser to Anthropic's API using your own API key. It never touches any third-party server. Nothing is stored or logged anywhere.
Can I share my standup notes with a permalink?
Yes β click Share link after generating. The diff is encoded in the URL so anyone with the link can regenerate the same output (they'll need their own API key, or it'll run in demo mode).
How does this compare to writing standup notes manually?
Writing standup notes manually takes 5β10 minutes, especially after a day of context-switching across multiple files. This tool reads the raw diff and surfaces what changed, why it matters, and what's still in progress β typically saving a meaningful chunk of morning prep time.